summaryrefslogtreecommitdiff
path: root/src/or/circuitbuild.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-12-14 23:39:14 +0000
committerRoger Dingledine <arma@torproject.org>2006-12-14 23:39:14 +0000
commitc44dd3870e4fa46ad983632b873bcf7e4f973ff8 (patch)
tree26ca511a3765ec978e297077a3e82dac93bba1be /src/or/circuitbuild.c
parent30e4f4f6ce17dfe8e0a44a45c0fecda689ece475 (diff)
downloadtor-c44dd3870e4fa46ad983632b873bcf7e4f973ff8.tar.gz
tor-c44dd3870e4fa46ad983632b873bcf7e4f973ff8.zip
clarify our use of local time vs GMT
svn:r9109
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r--src/or/circuitbuild.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index dbfa95e8eb..c76667a2bb 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -2006,7 +2006,7 @@ remove_dead_entries(void)
base16_encode(dbuf, sizeof(dbuf), entry->identity, DIGEST_LEN);
format_local_iso_time(tbuf, entry->bad_since);
log_info(LD_CIRC, "Entry guard '%s' (%s) has been down or unlisted "
- "since %s; removing.",
+ "since %s local time; removing.",
entry->nickname, dbuf, tbuf);
tor_free(entry);
smartlist_del_keeporder(entry_guards, i);