fix strftime regression in %e format

%e pads with spaces instead of zeros.
This commit is contained in:
Rich Felker 2013-08-24 14:35:17 -04:00
parent 190bbb9923
commit 2828a130b1
1 changed files with 2 additions and 2 deletions

View File

@ -80,8 +80,8 @@ const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm *
fmt = "%m/%d/%y";
goto recu_strftime;
case 'e':
val = tm->tm_mday;
goto number;
*l = snprintf(*s, sizeof *s, "%2d", tm->tm_mday);
return *s;
case 'F':
fmt = "%Y-%m-%d";
goto recu_strftime;