From 85884a59e9606aef3efbfc8ba777ac07d30c1af5 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Mon, 29 Mar 2004 19:53:53 +0000 Subject: [PATCH] fix typo svn:r1364 --- trunk/src/or/dirserv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/or/dirserv.c b/trunk/src/or/dirserv.c index 0e28c5802f..75dfae3b6f 100644 --- a/trunk/src/or/dirserv.c +++ b/trunk/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;