From 9bc6e3aa6cdd5a7a434dc696f35cb26ccbe0372a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sun, 15 May 2005 02:05:45 +0000 Subject: [PATCH] Add an explanatory comment svn:r4222 --- src/or/config.c | 3 +++ 1 file changed, 3 insertions(+) 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);