diff options
author | Roger Dingledine <arma@torproject.org> | 2004-03-09 14:53:00 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-03-09 14:53:00 +0000 |
commit | 30969421d3f6389fa985ae997c3a0969b3bfaf29 (patch) | |
tree | e03fb07c1a0294dc6bfd3a9272878f55034d34ae /src/or/routerlist.c | |
parent | 416993afc1f82e3c9946950e6f5554ebe36d11bc (diff) | |
download | tor-30969421d3f6389fa985ae997c3a0969b3bfaf29.tar tor-30969421d3f6389fa985ae997c3a0969b3bfaf29.tar.gz |
stop troubling router operators with unapproved router connect attempts
but give the dirserver operator more information
svn:r1246
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index bfd593559..f47d82958 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -861,7 +861,7 @@ routerinfo_t *router_get_entry_from_string(const char *s, tok = find_first_by_keyword(tokens, K_BANDWIDTH); if (tok && bw_set) { - log_fn(LOG_WARN,"Rendundant bandwidth line"); + log_fn(LOG_WARN,"Redundant bandwidth line"); goto err; } else if (tok) { if (tok->n_args < 1) { |