aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Perry <mikeperry-git@fscked.org>2012-11-02 12:37:26 -0700
committerMike Perry <mikeperry-git@fscked.org>2012-12-07 15:28:37 -0800
commitda5c398d79c890966339558749662fa8ffabf480 (patch)
tree56a6bdc946265760d64a6d1b92a8f04c0f548bd5 /src
parentef1b830ef8d751172ebe577a3e8a754c89225394 (diff)
downloadtor-da5c398d79c890966339558749662fa8ffabf480.tar
tor-da5c398d79c890966339558749662fa8ffabf480.tar.gz
Be explicit about units for timeout.
Diffstat (limited to 'src')
-rw-r--r--src/or/circuitbuild.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index eda36d3c4..215ca1439 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -1392,7 +1392,7 @@ entry_guard_inc_first_hop_count(entry_guard_t *guard)
"circuits. To avoid potential route manipluation attacks, "
"Tor has disabled use of this guard. Success "
"counts are %d/%d, with %d timeouts. For reference, your "
- "timeout cutoff is %ld.",
+ "timeout cutoff is %ld seconds.",
guard->nickname, hex_str(guard->identity, DIGEST_LEN),
guard->circuit_successes, guard->first_hops, guard->timeouts,
(long)circ_times.close_ms/1000);
@@ -1407,7 +1407,7 @@ entry_guard_inc_first_hop_count(entry_guard_t *guard)
"circuits. This could indicate a route manipulation attack, "
"extreme network overload, or a bug. "
"Success counts are %d/%d, with %d timeouts. "
- "For reference, your timeout cutoff is %ld.",
+ "For reference, your timeout cutoff is %ld seconds.",
guard->nickname, hex_str(guard->identity, DIGEST_LEN),
guard->circuit_successes, guard->first_hops, guard->timeouts,
(long)circ_times.close_ms/1000);
@@ -1422,7 +1422,7 @@ entry_guard_inc_first_hop_count(entry_guard_t *guard)
"overloaded, but it could also mean an attack against "
"you or the potentially the guard itself. Success counts "
"are %d/%d, with %d timeouts. For reference, your timeout "
- "cutoff is %ld.",
+ "cutoff is %ld seconds.",
guard->nickname, hex_str(guard->identity, DIGEST_LEN),
guard->circuit_successes, guard->first_hops, guard->timeouts,
(long)circ_times.close_ms/1000);
@@ -1435,7 +1435,7 @@ entry_guard_inc_first_hop_count(entry_guard_t *guard)
"Your Guard %s=%s is failing more circuits than usual. "
"Most likely this means the Tor network is overloaded. "
"Success counts are %d/%d, with %d timeouts. For "
- "reference, your timeout cutoff is %ld.",
+ "reference, your timeout cutoff is %ld seconds.",
guard->nickname, hex_str(guard->identity, DIGEST_LEN),
guard->circuit_successes, guard->first_hops,
guard->timeouts, (long)circ_times.close_ms/1000);