summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-04-01 07:16:52 +0000
committerNick Mathewson <nickm@torproject.org>2005-04-01 07:16:52 +0000
commit73f6c1531e44a843933284da81f3d4f6431572ce (patch)
tree3cef8ad374accb88d6b21fb98853be9ba5b46e51
parent003d9df6b0b4894b45b09cd9b4d2469f3c8e4f77 (diff)
downloadtor-73f6c1531e44a843933284da81f3d4f6431572ce.tar.gz
tor-73f6c1531e44a843933284da81f3d4f6431572ce.zip
fix typo in earlier libevent mmessage suppress patch
svn:r3950
-rw-r--r--src/common/log.c1
-rw-r--r--src/or/config.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/common/log.c b/src/common/log.c
index 6b1a1a5c03..cfab09368a 100644
--- a/src/common/log.c
+++ b/src/common/log.c
@@ -515,4 +515,5 @@ void suppress_libevent_log_msg(const char *msg)
}
#else
void configure_libevent_logging(void) {}
+void suppress_libevent_log_msg(const char *msg) {}
#endif
diff --git a/src/or/config.c b/src/or/config.c
index 9d9320f567..d452bc57f9 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -270,9 +270,9 @@ options_act(void) {
}
if (!libevent_initialized) {
configure_libevent_logging();
- suppress_libevent_logmsg("function not implemented");
+ suppress_libevent_log_msg("function not implemented");
event_init();
- suppress_libevent_msg(NULL);
+ suppress_libevent_log_msg(NULL);
#if defined(HAVE_EVENT_GET_VERSION) && defined(HAVE_EVENT_GET_METHOD)
/* Making this a NOTICE for now so we can link bugs to a libevent versions
* or methods better. */