diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-25 05:49:13 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-25 05:49:13 +0000 |
commit | e24057b2bfa476cd6f9217c22336b76154b633c1 (patch) | |
tree | 07843d13d47b20b9e9210bc4e99bb2391db85427 | |
parent | d254aeb09e09a744555b2cf183ab28bc56ee95ca (diff) | |
download | tor-e24057b2bfa476cd6f9217c22336b76154b633c1.tar.gz tor-e24057b2bfa476cd6f9217c22336b76154b633c1.zip |
when warning that a version is too new, don't use the confusing
text "is_obsolete_version():".
svn:r2986
-rw-r--r-- | src/or/routerparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerparse.c b/src/or/routerparse.c index 0df5162393..ce658c80ca 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -240,7 +240,7 @@ get_recommended_software_from_directory(const char *str) if (!found_newer) { if (!warned_too_new) { - log_fn(LOG_WARN, "This version of Tor (%s) is newer than any on the recommended list (%s)", + log(LOG_WARN, "This version of Tor (%s) is newer than any on the recommended list (%s)", myversion, versionlist); warned_too_new=1; } |