X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftime%2Fstrftime.c;h=794fbe1d70727a057a99a4d709bd71a2a66b8a99;hb=4c48501ee2a022a0dd207a2db4d346a00f9927a1;hp=dac64037fb241d91b2e5ef4140624b1507c81195;hpb=242a4bb4406dad53a1983ea1134d5326a0c4afa3;p=musl diff --git a/src/time/strftime.c b/src/time/strftime.c index dac64037..794fbe1d 100644 --- a/src/time/strftime.c +++ b/src/time/strftime.c @@ -5,6 +5,7 @@ #include #include #include +#include "locale_impl.h" #include "libc.h" #include "time_impl.h" @@ -126,6 +127,7 @@ const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm * goto recu_strftime; case 's': val = __tm_to_secs(tm) + tm->__tm_gmtoff; + width = 1; goto number; case 'S': val = tm->tm_sec; @@ -216,7 +218,7 @@ size_t __strftime_l(char *restrict s, size_t n, const char *restrict f, const st const char *t; int plus; unsigned long width; - for (l=0; l+1= n-l) return 0; } else { width = 0; } f = p; if (*f == 'E' || *f == 'O') f++; t = __strftime_fmt_1(&buf, &k, *f, tm, loc); - if (!t) return 0; + if (!t) break; if (width) { for (; *t=='+' || *t=='-' || (*t=='0'&&t[1]); t++, k--); width--; @@ -247,20 +248,23 @@ size_t __strftime_l(char *restrict s, size_t n, const char *restrict f, const st s[l++] = '-'; else width++; - if (width >= n-l) return 0; - for (; width > k; width--) + for (; width > k && l < n; width--) s[l++] = '0'; } - if (k >= n-l) return 0; + if (k > n-l) k = n-l; memcpy(s+l, t, k); l += k; } + if (n) { + if (l==n) l=n-1; + s[l] = 0; + } return 0; } size_t strftime(char *restrict s, size_t n, const char *restrict f, const struct tm *restrict tm) { - return __strftime_l(s, n, f, tm, 0); + return __strftime_l(s, n, f, tm, CURRENT_LOCALE); } weak_alias(__strftime_l, strftime_l);