Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ZerXes
Tor
Commits
0b8a0c37
Commit
0b8a0c37
authored
Oct 07, 2003
by
Roger Dingledine
Browse files
give correct warning message when you're running an old version
svn:r546
parent
4039eccd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/or/routers.c
View file @
0b8a0c37
...
...
@@ -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.
\n
Please upgrade to one of %s."
,
VERSION
,
RECOMMENDED_SOFTWARE_VERSIONS
);
log
(
LOG_WARNING
,
"You are running tor version %s, which is no longer supported.
\n
Please 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
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment