summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-05-15 02:05:45 +0000
committerNick Mathewson <nickm@torproject.org>2005-05-15 02:05:45 +0000
commit9bc6e3aa6cdd5a7a434dc696f35cb26ccbe0372a (patch)
treee34b7122b53af060853f269d66b01caf159fb2c1
parentd63f7fde626f2be9d24ac323f2982eef1f82b970 (diff)
downloadtor-9bc6e3aa6cdd5a7a434dc696f35cb26ccbe0372a.tar.gz
tor-9bc6e3aa6cdd5a7a434dc696f35cb26ccbe0372a.zip
Add an explanatory comment
svn:r4222
-rw-r--r--src/or/config.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/config.c b/src/or/config.c
index e06cbd8fae..604bb7252d 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -285,6 +285,9 @@ options_act(void) {
}
if (!libevent_initialized) {
configure_libevent_logging();
+ /* If the kernel complains that some method (say, epoll) doesn't
+ * exist, we don't care about it, since libevent will cope.
+ */
suppress_libevent_log_msg("Function not implemented");
event_init();
suppress_libevent_log_msg(NULL);