summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-08-30 07:01:30 +0000
committerRoger Dingledine <arma@torproject.org>2005-08-30 07:01:30 +0000
commit6a52aa52fe76de8efabf01a95103af87a178f5dd (patch)
tree642c49fa5deaf0f240ee201e2009a917b553c04a
parent4240410a9d340d780c15e37af8213571172c8dcb (diff)
downloadtor-6a52aa52fe76de8efabf01a95103af87a178f5dd.tar.gz
tor-6a52aa52fe76de8efabf01a95103af87a178f5dd.zip
fix a pair of hard-coded urls
svn:r4887
-rw-r--r--src/or/buffers.c2
-rw-r--r--src/or/directory.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/or/buffers.c b/src/or/buffers.c
index 29e1667f85..c3863b2886 100644
--- a/src/or/buffers.c
+++ b/src/or/buffers.c
@@ -1065,7 +1065,7 @@ fetch_from_buf_socks(buf_t *buf, socks_request_t *req)
"client accordingly.\n"
"</p>\n"
"<p>\n"
-"See <a href=\"http://tor.eff.org/doc/tor-doc.html#installing\">http://tor.eff.org/doc/tor-doc.html#installing</a> for more information.\n"
+"See <a href=\"http://tor.eff.org/documentation.html\">http://tor.eff.org/documentation.html</a> for more information.\n"
"<!-- Plus this comment, to make the body response more than 512 bytes, so IE will be willing to display it. Comment comment comment comment comment comment comment comment comment comment comment comment.-->\n"
"</p>\n"
"</body>\n"
diff --git a/src/or/directory.c b/src/or/directory.c
index 8463c94e0a..6a22817a1a 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -844,7 +844,7 @@ connection_dir_client_reached_eof(connection_t *conn)
log_fn(LOG_WARN,"http status 400 (\"%s\") response from dirserver '%s'. Malformed server descriptor?", reason, conn->address);
break;
case 403:
- log_fn(LOG_WARN,"http status 403 (\"%s\") response from dirserver '%s'. Is your clock skewed? Have you mailed us your key fingerprint? Are you using the right key? Are you using a private IP address? See http://tor.eff.org/doc/tor-doc.html#server.", reason, conn->address);
+ log_fn(LOG_WARN,"http status 403 (\"%s\") response from dirserver '%s'. Is your clock skewed? Have you mailed us your key fingerprint? Are you using the right key? Are you using a private IP address? See http://tor.eff.org/doc/tor-doc-server.html", reason, conn->address);
break;
default:
log_fn(LOG_WARN,"http status %d (\"%s\") reason unexpected (server '%s').", status_code, reason, conn->address);