diff options
author | Roger Dingledine <arma@torproject.org> | 2006-02-12 00:14:58 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-02-12 00:14:58 +0000 |
commit | b5ac6fc707c4af299892ffc7f3f1a25b4a680949 (patch) | |
tree | 331703cd2df98a733d2283363b0f8c5ebccbe8ad /src/or/config.c | |
parent | 3c3ac254f010ec2447321d51732d0c6321ffb7a4 (diff) | |
download | tor-b5ac6fc707c4af299892ffc7f3f1a25b4a680949.tar tor-b5ac6fc707c4af299892ffc7f3f1a25b4a680949.tar.gz |
more helpful log message when running servers on obsolete windows.
svn:r5975
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 57b0147c2..6a1ab3943 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1855,7 +1855,7 @@ options_validate(or_options_t *old_options, or_options_t *options, !strcmpstart(uname, "Windows 98") || !strcmpstart(uname, "Windows Me"))) { log(LOG_WARN, LD_CONFIG, "Tor is running as a server, but you are " - "running %s; this probably won't work.", get_uname()); + "running %s; this probably won't work. See http://wiki.noreply.org/noreply/TheOnionRouter/TorFAQ#ServerOS for details.", get_uname()); } if (options->ORPort == 0 && options->ORListenAddress != NULL) |