mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 08:26:52 +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:
parent
2c04e5c7e5
commit
bdeb9e603a
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user