diff options
author | Roger Dingledine <arma@torproject.org> | 2006-02-21 03:55:47 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-02-21 03:55:47 +0000 |
commit | 89b07b458ba546145b3aeb5a9d58dbe971125a9a (patch) | |
tree | 425f163129494af007b694ebd2d247fa0ca9317b | |
parent | 722fcb97e89cd694c9dbbb85e399c75cb62df305 (diff) | |
download | tor-89b07b458ba546145b3aeb5a9d58dbe971125a9a.tar.gz tor-89b07b458ba546145b3aeb5a9d58dbe971125a9a.zip |
i missed the other half of that grammar fix
svn:r6058
-rw-r--r-- | src/or/routerlist.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 37d4248260..d2f2e8f5a3 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -2837,10 +2837,11 @@ routers_update_all_from_networkstatus(void) log_notice(LD_GENERAL, "This version of Tor (%s) is newer than any " "recommended version%s, according to %d/%d recent network " "statuses. Versions recommended by at least %d recent " - "authorities are: %s", + "authorit%s are: %s", VERSION, consensus == VS_NEW_IN_SERIES ? " in its series" : "", - n_recent-n_recommended, n_recent, n_recent/2, rec); + n_recent-n_recommended, n_recent, n_recent/2, + n_recent/2 > 1 ? "ies" : "y", rec); have_warned_about_new_version = 1; tor_free(rec); } |