Browse Source

Make the last bunch of libevent version detection silliness work on macosx.

svn:r18015
Nick Mathewson 15 years ago
parent
commit
a0a5440826
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/config.c

+ 1 - 1
src/or/config.c

@@ -4743,7 +4743,7 @@ init_libevent(void)
    */
   suppress_libevent_log_msg("Function not implemented");
 #ifdef __APPLE__
-  if (decode_libevent_version(event_get_version()) < LE_11B) {
+  if (decode_libevent_version(event_get_version(), NULL) < LE_11B) {
     setenv("EVENT_NOKQUEUE","1",1);
   }
 #endif