diff options
author | Kay Sievers <kay@vrfy.org> | 2013-10-31 03:04:07 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-10-31 03:05:14 +0100 |
commit | 7f35b7bc4a241e9aa3b1512fd345cbf5b2e5a782 (patch) | |
tree | 06eba2b8e5c432e390c7e6a2f0eda9b841062808 | |
parent | e5609878d8802e2469c433be418bcbcf55fbe63b (diff) |
timedatectl: do not print the time zone for the rtc time
-rw-r--r-- | src/timedate/timedatectl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c index 30054b6629..48a3b49755 100644 --- a/src/timedate/timedatectl.c +++ b/src/timedate/timedatectl.c @@ -126,7 +126,7 @@ static void print_status_info(StatusInfo *i) { rtc_sec = (time_t)(i->rtc_time / USEC_PER_SEC); zero(tm); - assert_se(strftime(a, sizeof(a), "%a %Y-%m-%d %H:%M:%S %Z", gmtime_r(&rtc_sec, &tm)) > 0); + assert_se(strftime(a, sizeof(a), "%a %Y-%m-%d %H:%M:%S", gmtime_r(&rtc_sec, &tm)) > 0); char_array_0(a); printf(" RTC time: %s\n", a); } else |