From: Rich Felker Date: Sat, 26 Jul 2014 06:42:33 +0000 (-0400) Subject: fix nl_langinfo table for LC_TIME era-related items X-Git-Tag: v1.1.4~22 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a19cd2b64aabee4ae3c80bcf4ba8da26fba560e4;p=oweals%2Fmusl.git fix nl_langinfo table for LC_TIME era-related items due to a skipped slot and missing null terminator, the last few strings were off by one or two slots from their item codes. --- diff --git a/src/locale/langinfo.c b/src/locale/langinfo.c index 13abf45b..657dd9c4 100644 --- a/src/locale/langinfo.c +++ b/src/locale/langinfo.c @@ -18,8 +18,9 @@ static const char c_time[] = "%H:%M:%S\0" "%I:%M:%S %p\0" "\0" + "\0" "%m/%d/%y\0" - "0123456789" + "0123456789\0" "%a %b %e %T %Y\0" "%H:%M:%S";