diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-05-15 02:05:45 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-05-15 02:05:45 +0000 |
commit | 9bc6e3aa6cdd5a7a434dc696f35cb26ccbe0372a (patch) | |
tree | e34b7122b53af060853f269d66b01caf159fb2c1 /src/or/config.c | |
parent | d63f7fde626f2be9d24ac323f2982eef1f82b970 (diff) | |
download | tor-9bc6e3aa6cdd5a7a434dc696f35cb26ccbe0372a.tar.gz tor-9bc6e3aa6cdd5a7a434dc696f35cb26ccbe0372a.zip |
Add an explanatory comment
svn:r4222
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 3 |
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); |