diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-10-17 02:50:09 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-10-17 21:25:42 +0200 |
commit | 6d0274f11547a0f11200bb82bf598a5a253e12cf (patch) | |
tree | cdca61ea9c8a3c120e53c212dab318ffa141c129 /src/shared/util.c | |
parent | 22349cee29b31cde7ef8582b4882475f553af97a (diff) |
timedatectl: introduce new command line client for timedated
Much like logind has a client in loginctl, and journald in journalctl
introduce timedatectl, to change the system time (incl. RTC), timezones
and related settings.
Diffstat (limited to 'src/shared/util.c')
-rw-r--r-- | src/shared/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index 1e1eb2af5f..50c4c08993 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -1959,7 +1959,7 @@ char *format_timestamp(char *buf, size_t l, usec_t t) { sec = (time_t) (t / USEC_PER_SEC); - if (strftime(buf, l, "%a, %d %b %Y %H:%M:%S %z", localtime_r(&sec, &tm)) <= 0) + if (strftime(buf, l, "%a, %Y-%m-%d %H:%M:%S %Z", localtime_r(&sec, &tm)) <= 0) return NULL; return buf; |