Don't warn if timezone "" is specified.

This commit is contained in:
Dianne Skoll
2025-10-09 12:45:01 -04:00
parent 19b33bb9bc
commit 834741f91b

View File

@@ -410,6 +410,9 @@ warn_if_timezone_bad(char const *tz)
if (!tz) {
return;
}
if (!*tz) {
return;
}
if (*tz == '!') {
return;
}