[tor-commits] [tor/master] Add a bufferevent note to startup log

nickm at torproject.org nickm at torproject.org
Mon Aug 29 21:23:45 UTC 2011


commit b51e21c5d0193d05a965b3b5f7e1435300d23333
Author: Sebastian Hahn <sebastian at torproject.org>
Date:   Mon Aug 29 23:10:03 2011 +0200

    Add a bufferevent note to startup log
    
    This should help us easily spot if a tor was built with
    --enable-bufferevent or not
---
 src/or/main.c |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/or/main.c b/src/or/main.c
index 260de16..ad06fed 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -2156,8 +2156,13 @@ tor_init(int argc, char *argv[])
   }
   quiet_level = quiet;
 
-  log(LOG_NOTICE, LD_GENERAL, "Tor v%s. This is experimental software. "
-      "Do not rely on it for strong anonymity. (Running on %s)",get_version(),
+  log(LOG_NOTICE, LD_GENERAL, "Tor v%s%s. This is experimental software. "
+      "Do not rely on it for strong anonymity. (Running on %s)", get_version(),
+#ifdef USE_BUFFEREVENTS
+      " (with bufferevents)",
+#else
+      "",
+#endif
       get_uname());
 
   if (network_init()<0) {



More information about the tor-commits mailing list