diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-04-08 03:47:18 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-04-08 03:47:18 +0000 |
commit | f3b833cb474d193bdae69b0648cc77072ceb1b11 (patch) | |
tree | 64f24fb6f098881bf020bf05b361b5537ae7a24a /src | |
parent | 74dc7eedc510d70ea600dd5938f45947a314bc24 (diff) | |
download | tor-f3b833cb474d193bdae69b0648cc77072ceb1b11.tar.gz tor-f3b833cb474d193bdae69b0648cc77072ceb1b11.zip |
Make libevent_logging_callback static.
svn:r4058
Diffstat (limited to 'src')
-rw-r--r-- | src/common/log.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/log.c b/src/common/log.c index ce33810a63..609bf76bf7 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -496,7 +496,8 @@ void switch_logs_debug(void) #ifdef HAVE_EVENT_SET_LOG_CALLBACK static const char *suppress_msg = NULL; -void libevent_logging_callback(int severity, const char *msg) +static void +libevent_logging_callback(int severity, const char *msg) { if (suppress_msg && strstr(msg, suppress_msg)) return; |