Prechádzať zdrojové kódy

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

Roger Dingledine 20 rokov pred
rodič
commit
3c9ec416f6
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      src/or/config.c

+ 1 - 1
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)