aboutsummaryrefslogtreecommitdiff
path: root/src/or/hibernate.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/hibernate.c
parente6828ea634966259a8f1bb92ef28d8b20b0dc0e4 (diff)
downloadtor-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/hibernate.c')
-rw-r--r--src/or/hibernate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/hibernate.c b/src/or/hibernate.c
index 9e54eb4b4c..72089962ae 100644
--- a/src/or/hibernate.c
+++ b/src/or/hibernate.c
@@ -890,12 +890,12 @@ hibernate_end_time_elapsed(time_t now)
/* We weren't sleeping before; we should sleep now. */
log_notice(LD_ACCT,
"Accounting period ended. Commencing hibernation until "
- "%s GMT", buf);
+ "%s UTC", buf);
hibernate_go_dormant(now);
} else {
log_notice(LD_ACCT,
"Accounting period ended. This period, we will hibernate"
- " until %s GMT",buf);
+ " until %s UTC",buf);
}
}
}