aboutsummaryrefslogtreecommitdiff
path: root/src/or/main.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-11-23 17:09:36 -0500
committerNick Mathewson <nickm@torproject.org>2011-11-23 17:09:36 -0500
commit2b4d4ffa8f2d893cf5df1480aa2db86e75e8292a (patch)
tree701f96e37dbef4054023aad0d4915c539322b2a5 /src/or/main.c
parent4f7587a5ed64b2b5894157103d2d50f543434d64 (diff)
downloadtor-2b4d4ffa8f2d893cf5df1480aa2db86e75e8292a.tar.gz
tor-2b4d4ffa8f2d893cf5df1480aa2db86e75e8292a.zip
Tweak the "this is not a stable release" warning some more
Diffstat (limited to 'src/or/main.c')
-rw-r--r--src/or/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/main.c b/src/or/main.c
index 867dd60e9e..f6f47dba2c 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.");
}