mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
fix comment and return value for check_software_version_against_directory()
svn:r4996
This commit is contained in:
parent
43df34a4b8
commit
d7d4d4cbbf
@ -372,8 +372,7 @@ get_recommended_software_from_directory(const char *str)
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Return 0 if myversion is supported; else log a message and return
|
||||
* -1 (or exit if ignoreversions is false) */
|
||||
/* Return 0 if myversion is supported; else warn and return -1. */
|
||||
int
|
||||
check_software_version_against_directory(const char *directory)
|
||||
{
|
||||
@ -392,7 +391,7 @@ check_software_version_against_directory(const char *directory)
|
||||
"Please use %s%s.",
|
||||
VERSION, strchr(v,',') ? "one of " : "", v);
|
||||
tor_free(v);
|
||||
return 0;
|
||||
return -1;
|
||||
}
|
||||
|
||||
/** Parse a directory from <b>str</b> and, when done, store the
|
||||
|
Loading…
Reference in New Issue
Block a user