summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-09-23 08:57:30 +0000
committerRoger Dingledine <arma@torproject.org>2008-09-23 08:57:30 +0000
commit6a7abbd25d603a7546d92f95341d88ffb7581254 (patch)
treec78bfa46132109ac7a87215f00ea8c1477bb2968
parent0fc0d5266ccb91139616bbe5b16a793c8d75392f (diff)
downloadtor-6a7abbd25d603a7546d92f95341d88ffb7581254.tar.gz
tor-6a7abbd25d603a7546d92f95341d88ffb7581254.zip
ok, but inaccurate error strings worse
svn:r16938
-rw-r--r--src/or/directory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/directory.c b/src/or/directory.c
index e5f50ae14b..2e00088c2b 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -3083,9 +3083,9 @@ directory_handle_command_post(dir_connection_t *conn, const char *headers,
"Rejected rend descriptor (length %d) from %s.",
(int)body_len, conn->_base.address);
write_http_status_line(conn, 400,
- "Invalid v1 service descriptor rejected");
+ "Invalid v0 service descriptor rejected");
} else {
- write_http_status_line(conn, 200, "Service descriptor (v1) stored");
+ write_http_status_line(conn, 200, "Service descriptor (v0) stored");
}
goto done;
}