]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Tweak the "this is not a stable release" warning some more
authorNick Mathewson <nickm@torproject.org>
Wed, 23 Nov 2011 22:09:36 +0000 (17:09 -0500)
committerNick Mathewson <nickm@torproject.org>
Wed, 23 Nov 2011 22:09:36 +0000 (17:09 -0500)
src/or/main.c

index 867dd60e9e65633301b36880add1094c2e2eefb9..f6f47dba2c2e91d1e65d93a1cbcbe437ecc26ec2 100644 (file)
@@ -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.");
   }