1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-28 11:55:23 +03:00

timedatectl: when no timezone is set consider UTC the default

This fixes #993, and ensures that the libc does not consider any
old timezone information into account, that was set earlier.
This commit is contained in:
Lennart Poettering 2015-08-20 12:16:13 +02:00
parent 2c04e5c7e5
commit bdeb9e603a

View File

@ -96,7 +96,7 @@ static void print_status_info(const StatusInfo *i) {
old_tz = strdupa(tz);
/* Set the new $TZ */
if (i->timezone && setenv("TZ", i->timezone, true) < 0)
if (setenv("TZ", isempty(i->timezone) ? "UTC" : i->timezone, true) < 0)
log_warning_errno(errno, "Failed to set TZ environment variable, ignoring: %m");
else
tzset();