made implementation defined behaviour (POSIX) more explicit

This commit is contained in:
eck 1990-10-02 09:59:30 +00:00
parent 6f6dff3461
commit 67ef9905e6

View file

@ -233,6 +233,15 @@ parseTZ(const char *p)
if (!p) return;
if (*p == ':') {
/*
* According to POSIX, this is implementation defined.
* Since it depends on the particular operating system, we
* can do nothing.
*/
return;
}
if (!strcmp(lastTZ, p)) return; /* nothing changed */
*_tzname[0] = '\0';