aboutsummaryrefslogtreecommitdiff
path: root/src/or/statefile.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-11-23 10:05:16 -0500
committerNick Mathewson <nickm@torproject.org>2012-11-23 10:05:16 -0500
commit864e15cd1c596b2a9dbc610d3aa78b49a4f33355 (patch)
tree4f41dd3906b2fe00639d389c28b7193a53b5908a /src/or/statefile.c
parente6828ea634966259a8f1bb92ef28d8b20b0dc0e4 (diff)
downloadtor-864e15cd1c596b2a9dbc610d3aa78b49a4f33355.tar
tor-864e15cd1c596b2a9dbc610d3aa78b49a4f33355.tar.gz
In comments and logs, say "UTC" not "GMT"
Fix for #6113. Note that the RFC1123 times we generate still all say 'GMT'. I'm going to suggest this is not worth changing.
Diffstat (limited to 'src/or/statefile.c')
-rw-r--r--src/or/statefile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/statefile.c b/src/or/statefile.c
index beb9cf81b..55ba0c160 100644
--- a/src/or/statefile.c
+++ b/src/or/statefile.c
@@ -416,7 +416,7 @@ or_state_save(time_t now)
format_local_iso_time(tbuf, now);
tor_asprintf(&contents,
"# Tor state file last generated on %s local time\n"
- "# Other times below are in GMT\n"
+ "# Other times below are in UTC\n"
"# You *do not* need to edit this file.\n\n%s",
tbuf, state);
tor_free(state);