diff options
author | Roger Dingledine <arma@torproject.org> | 2003-11-11 17:21:35 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-11-11 17:21:35 +0000 |
commit | 9c8a54a39f05669c095444fb6f484b5e8b0fba58 (patch) | |
tree | 2e46bcb17c31728f61794dfe76fa439d8a41fb23 /src/or/directory.c | |
parent | d0acbe86d1e4ee8abd1cba983d932a70ab6c7693 (diff) | |
download | tor-9c8a54a39f05669c095444fb6f484b5e8b0fba58.tar tor-9c8a54a39f05669c095444fb6f484b5e8b0fba58.tar.gz |
more cleanups and bugfix
svn:r790
Diffstat (limited to 'src/or/directory.c')
-rw-r--r-- | src/or/directory.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index 204909ee8..258b0b548 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -123,8 +123,7 @@ int connection_dir_process_inbuf(connection_t *conn) { if(router_get_dir_from_string(the_directory, conn->identity_pkey) < 0){ log_fn(LOG_INFO,"...but parsing failed. Ignoring."); } else { - log_fn(LOG_INFO,"and got an %s directory; updated routers.", - conn->identity_pkey ? "authenticated" : "unauthenticated"); + log_fn(LOG_INFO,"updated routers."); } if(options.OnionRouter) { /* connect to them all */ router_retry_connections(); |