diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-02 00:23:43 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-02 00:23:43 -0500 |
commit | 536db2b5ac6b9fee7129417926c59ca12e8dffb0 (patch) | |
tree | 10ca6988f4ab62a0b6c5a61fb806a5651d51adf4 /src/time/strptime.c | |
parent | ca19774c913739ef2bea9586a847d8719f19840f (diff) | |
download | musl-536db2b5ac6b9fee7129417926c59ca12e8dffb0.tar.gz |
fix bugs in strptime handling of string day/month names, literals
Diffstat (limited to 'src/time/strptime.c')
-rw-r--r-- | src/time/strptime.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/time/strptime.c b/src/time/strptime.c index 488c08dd..4c0bb26c 100644 --- a/src/time/strptime.c +++ b/src/time/strptime.c @@ -18,6 +18,7 @@ char *strptime(const char *s, const char *f, struct tm *tm) else if (*s != *f) return 0; else s++; f++; + continue; } f++; if (*f == '+') f++; @@ -165,6 +166,7 @@ char *strptime(const char *s, const char *f, struct tm *tm) ex = nl_langinfo(min+i); len = strlen(ex); if (strncasecmp(s, ex, len)) continue; + s += len; *dest = i % range; break; } |