summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-01-24 03:45:58 +0000
committerRoger Dingledine <arma@torproject.org>2006-01-24 03:45:58 +0000
commit2eabf190e9db9ab2dfde27bc3821ef011d786ddf (patch)
treedc1fc30f25903c08a2b2a715c1bd0806a5df7a67
parent52737a5e6d6efd2cac582fa2904b9df099fcc43f (diff)
downloadtor-2eabf190e9db9ab2dfde27bc3821ef011d786ddf.tar.gz
tor-2eabf190e9db9ab2dfde27bc3821ef011d786ddf.zip
make it louder when we're running an unrecommended version.
also, we need to tell them what versions *are* recommended. i'll add that to the todo. svn:r5859
-rw-r--r--src/or/routerlist.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 72ba8f4d70..9fd432f927 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -2750,10 +2750,12 @@ routers_update_all_from_networkstatus(void)
have_warned_about_new_version = 1;
}
} else {
- notice(LD_GENERAL, "This version of Tor (%s) is %s, according to "
- "%d/%d recent network statuses.",
- VERSION, consensus == VS_OLD ? "obsolete" : "not recommended",
- n_recent-n_recommended, n_recent);
+ warn(LD_GENERAL, "Please upgrade! "
+ "This version of Tor (%s) is %s, according to "
+ "%d/%d recent network statuses.",
+ VERSION, consensus == VS_OLD ? "obsolete" : "not recommended",
+ n_recent-n_recommended, n_recent);
+ /* XXX011 we need to tell them what versions *are* recommended! */
have_warned_about_old_version = 1;
}
} else {