diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-11-23 10:05:16 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-11-23 10:05:16 -0500 |
commit | 864e15cd1c596b2a9dbc610d3aa78b49a4f33355 (patch) | |
tree | 4f41dd3906b2fe00639d389c28b7193a53b5908a /src/or/statefile.c | |
parent | e6828ea634966259a8f1bb92ef28d8b20b0dc0e4 (diff) | |
download | tor-864e15cd1c596b2a9dbc610d3aa78b49a4f33355.tar.gz tor-864e15cd1c596b2a9dbc610d3aa78b49a4f33355.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/statefile.c b/src/or/statefile.c index beb9cf81ba..55ba0c1602 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); |