[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] fix a case error in suppressing a bogus libevent warning.
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] fix a case error in suppressing a bogus libevent warning.
- From: arma@xxxxxxxx (Roger Dingledine)
- Date: Sat, 14 May 2005 01:14:38 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Sat, 14 May 2005 01:14:56 -0400
- Reply-to: or-dev@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Update of /home2/or/cvsroot/tor/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/tor/src/or
Modified Files:
config.c
Log Message:
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.
Index: config.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/config.c,v
retrieving revision 1.344
retrieving revision 1.345
diff -u -d -r1.344 -r1.345
--- config.c 14 May 2005 00:13:16 -0000 1.344
+++ config.c 14 May 2005 05:14:36 -0000 1.345
@@ -285,7 +285,7 @@
}
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)