diff options
Diffstat (limited to 'lib/libc/stdtime/strftime.c')
-rw-r--r-- | lib/libc/stdtime/strftime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdtime/strftime.c b/lib/libc/stdtime/strftime.c index 27b0170..2712d95 100644 --- a/lib/libc/stdtime/strftime.c +++ b/lib/libc/stdtime/strftime.c @@ -123,8 +123,8 @@ label: "%02d", pt, ptlim); continue; case 'c': - /* NOTE: c_fmt is intentionally ignored */ - pt = _fmt("%a %Ef %T %Y", t, pt, ptlim); + /* NOTE: c_fmt is hardcoded in timelocal.c */ + pt = _fmt(tptr->c_fmt, t, pt, ptlim); continue; case 'D': pt = _fmt("%m/%d/%y", t, pt, ptlim); |