summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-03-29 19:53:53 +0000
committerRoger Dingledine <arma@torproject.org>2004-03-29 19:53:53 +0000
commit155c777a84e7059ac25084a45d5358811ba1ae5e (patch)
treecec2d5bdc64f408b5eea5d125fa31fd04a034b0b
parent0edf0ea7cc9d2fabb195f105ae888e42d1351a94 (diff)
downloadtor-155c777a84e7059ac25084a45d5358811ba1ae5e.tar.gz
tor-155c777a84e7059ac25084a45d5358811ba1ae5e.zip
fix typo
svn:r1364
-rw-r--r--src/or/dirserv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index 0e28c5802f..75dfae3b6f 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -254,7 +254,7 @@ dirserv_add_descriptor(const char **desc)
return -1;
}
if (ri->published_on < now-ROUTER_MAX_AGE) {
- log_fn(LOG_WARN, "Publication time for router with nickanem %s is too far in the past. Not adding", ri->nickname);
+ log_fn(LOG_WARN, "Publication time for router with nickname %s is too far in the past. Not adding", ri->nickname);
routerinfo_free(ri);
*desc = end;
return -1;