diff options
author | Roger Dingledine <arma@torproject.org> | 2005-05-14 05:14:36 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-05-14 05:14:36 +0000 |
commit | 3c9ec416f6203c0754e445839069496a85a1b6e1 (patch) | |
tree | 7df1f18ded8f0a3d8838cc895b487d46ea50174a /src | |
parent | 07230a698c0ab072d04fc5a85d359acd8ae2f261 (diff) | |
download | tor-3c9ec416f6203c0754e445839069496a85a1b6e1.tar.gz tor-3c9ec416f6203c0754e445839069496a85a1b6e1.zip |
fix a case error in suppressing a bogus libevent warning.
nick, was this lower-case for a reason? have both cases
appeared? or was this just a typo.
svn:r4206
Diffstat (limited to 'src')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index ff4ee6e115..e06cbd8fae 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -285,7 +285,7 @@ options_act(void) { } if (!libevent_initialized) { configure_libevent_logging(); - suppress_libevent_log_msg("function not implemented"); + suppress_libevent_log_msg("Function not implemented"); event_init(); suppress_libevent_log_msg(NULL); #if defined(HAVE_EVENT_GET_VERSION) && defined(HAVE_EVENT_GET_METHOD) |