diff options
author | Roger Dingledine <arma@torproject.org> | 2006-10-29 07:41:25 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-10-29 07:41:25 +0000 |
commit | 8a781f7f34ffa528a7f3cd2dde69e7259685c2b4 (patch) | |
tree | 9e2bce80ec4dd58bb73511e1c0504d19e71d3d08 /src/or | |
parent | 6b13771edd846fff72e6473495e41df141552d0e (diff) | |
download | tor-8a781f7f34ffa528a7f3cd2dde69e7259685c2b4.tar.gz tor-8a781f7f34ffa528a7f3cd2dde69e7259685c2b4.zip |
general cleanups from looking through or-cvs
svn:r8855
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/dirserv.c | 4 | ||||
-rw-r--r-- | src/or/relay.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index c72c847983..c9761ccb72 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -235,7 +235,7 @@ dirserv_load_fingerprint_file(void) } if (0==strcasecmp(nickname, UNNAMED_ROUTER_NICKNAME)) { /* If you approved an OR called "unnamed", then clients will be - * confused.*/ + * confused. */ log_notice(LD_CONFIG, "Authorizing a nickname '%s' is not allowed; skipping.", UNNAMED_ROUTER_NICKNAME); @@ -384,7 +384,7 @@ dirserv_get_status_impl(const char *id_digest, const char *nickname, if (reject_unlisted) return FP_REJECT; /* 0.1.0.2-rc was the first version that did enough self-testing that - * we're willing to take its word about whether it's running . */ + * we're willing to take its word about whether it's running. */ if (platform && !tor_version_as_new_as(platform,"0.1.0.2-rc")) result |= FP_INVALID; } diff --git a/src/or/relay.c b/src/or/relay.c index 93b272c75e..0923797077 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -554,7 +554,7 @@ connection_edge_end_reason_str(int reason) switch (reason) { case -1: log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, - "End cell arrived with length 0. Should be at least 1."); + "End cell arrived with length 0. Should be at least 1."); return "MALFORMED"; case END_STREAM_REASON_MISC: return "misc error"; case END_STREAM_REASON_RESOLVEFAILED: return "resolve failed"; |