aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changes/bug93934
-rw-r--r--src/or/config.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/changes/bug9393 b/changes/bug9393
new file mode 100644
index 000000000..9aedd1260
--- /dev/null
+++ b/changes/bug9393
@@ -0,0 +1,4 @@
+ o Minor bugfixes:
+ - Give the correct URL in the warning message that we present
+ when the user is trying to run a Tor relay on an ancient version
+ of Windows. Fixes bug 9393.
diff --git a/src/or/config.c b/src/or/config.c
index 3984755dd..ef0294626 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -2319,7 +2319,7 @@ options_validate(or_options_t *old_options, or_options_t *options,
!strcmpstart(uname, "Windows Me"))) {
log_warn(LD_CONFIG, "Tor is running as a server, but you are "
"running %s; this probably won't work. See "
- "https://wiki.torproject.org/TheOnionRouter/TorFAQ#ServerOS "
+ "https://www.torproject.org/docs/faq.html#BestOSForRelay "
"for details.", uname);
}