[tor-commits] [tor/master] Tweak the "this is not a stable release" warning some more

nickm at torproject.org nickm at torproject.org
Wed Nov 23 22:15:45 UTC 2011


commit 2b4d4ffa8f2d893cf5df1480aa2db86e75e8292a
Author: Nick Mathewson <nickm at torproject.org>
Date:   Wed Nov 23 17:09:36 2011 -0500

    Tweak the "this is not a stable release" warning some more
---
 src/or/main.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/or/main.c b/src/or/main.c
index 867dd60..f6f47db 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -1894,9 +1894,9 @@ tor_init(int argc, char *argv[])
                "Learn how to be safe at "
                "https://www.torproject.org/download/download#warning");
 
-    if (strstr(version, "alpha"))
-      log_notice(LD_GENERAL, "This is an alpha release; do not rely on it for "
-                 "strong anonymity.");
+    if (strstr(version, "alpha") || strstr(version, "beta"))
+      log_notice(LD_GENERAL, "This version is not a stable Tor release. "
+                 "Expect more bugs than usual.");
   }
 
 





More information about the tor-commits mailing list