diff options
Diffstat (limited to 'lib/libc/stdtime/strptime.c')
| -rw-r--r-- | lib/libc/stdtime/strptime.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/lib/libc/stdtime/strptime.c b/lib/libc/stdtime/strptime.c index e9ffe7180916..b89e140aa8d5 100644 --- a/lib/libc/stdtime/strptime.c +++ b/lib/libc/stdtime/strptime.c @@ -554,7 +554,8 @@ label:  				zonestr[cp - buf] = '\0';  				tzset();  				if (0 == strcmp(zonestr, "GMT") || -				    0 == strcmp(zonestr, "UTC")) { +				    0 == strcmp(zonestr, "UTC") || +				    0 == strcmp(zonestr, "Z")) {  				    *GMTp = 1;  				} else if (0 == strcmp(zonestr, tzname[0])) {  				    tm->tm_isdst = 0; | 
