diff options
author | Roger Dingledine <arma@torproject.org> | 2008-06-11 01:50:06 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-06-11 01:50:06 +0000 |
commit | 953b7751553da82c3cfab0245bb9397b26c39d1f (patch) | |
tree | 677df30b579da6af315b66352f99eb64bd1d70b6 /src | |
parent | d66bb67ae852d6d2efa9c69316bb399623f4a687 (diff) | |
download | tor-953b7751553da82c3cfab0245bb9397b26c39d1f.tar.gz tor-953b7751553da82c3cfab0245bb9397b26c39d1f.zip |
minor touchups
svn:r15117
Diffstat (limited to 'src')
-rw-r--r-- | src/or/circuitbuild.c | 2 | ||||
-rw-r--r-- | src/or/or.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 65b89e6ddc..f3046b75aa 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -2200,7 +2200,7 @@ entry_guards_compute_status(void) log_info(LD_CIRC, "Summary: Entry '%s' is %s, %s, and %s.", entry->nickname, entry->unreachable_since ? "unreachable" : "reachable", - entry->bad_since ? "unusable: " : "usable", + entry->bad_since ? "unusable" : "usable", entry_is_live(entry, 0, 1, 0) ? "live" : "not live")); log_info(LD_CIRC, " (%d/%d entry guards are usable/new)", num_live_entry_guards(), smartlist_len(entry_guards)); diff --git a/src/or/or.h b/src/or/or.h index cab39ecc43..ba7bdf9bdd 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -328,8 +328,8 @@ typedef enum { /** A connection to a directory server: set after a rendezvous * descriptor is downloaded. */ #define DIR_PURPOSE_HAS_FETCHED_RENDDESC 4 -/** A connection to a directory server: download one or more network-status - * objects */ +/** A connection to a directory server: download one or more v2 + * network-status objects */ #define DIR_PURPOSE_FETCH_NETWORKSTATUS 5 /** A connection to a directory server: download one or more server * descriptors. */ |