diff options
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. */ |