diff options
author | Roger Dingledine <arma@torproject.org> | 2003-10-07 16:56:27 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-10-07 16:56:27 +0000 |
commit | 0b8a0c3720d81e12b9fbee3ed8b3aa7646e1e167 (patch) | |
tree | 594fa8417dd0fff9a243923178df3acbb0396f4b /src/or/routers.c | |
parent | 4039eccd6f37e7aa424322ff9fecea6cbb433ad7 (diff) | |
download | tor-0b8a0c3720d81e12b9fbee3ed8b3aa7646e1e167.tar tor-0b8a0c3720d81e12b9fbee3ed8b3aa7646e1e167.tar.gz |
give correct warning message when you're running an old version
svn:r546
Diffstat (limited to 'src/or/routers.c')
-rw-r--r-- | src/or/routers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routers.c b/src/or/routers.c index 88f7c2edc..48aff1934 100644 --- a/src/or/routers.c +++ b/src/or/routers.c @@ -537,7 +537,7 @@ int router_get_dir_from_string(char *s, crypto_pk_env_t *pkey) return -1; } if (compare_recommended_versions(VERSION, directory->software_versions) < 0) { - log(LOG_WARNING, "You are running tor version %s, which is no longer supported.\nPlease upgrade to one of %s.", VERSION, RECOMMENDED_SOFTWARE_VERSIONS); + log(LOG_WARNING, "You are running tor version %s, which is no longer supported.\nPlease upgrade to one of %s.", VERSION, directory->software_versions); if(options.IgnoreVersion) { log(LOG_WARNING, "IgnoreVersion is set. If it breaks, we told you so."); } else { |