diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 2001-02-08 20:55:38 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 2001-02-08 20:55:38 +0000 |
| commit | 740972dc7234768787e3f49573c3ef08237476d8 (patch) | |
| tree | 2f82bd4b0d4139b1a8277339066f88589665c1b6 /lib/libc/stdtime/strftime.c | |
| parent | 6c9eb5f3a689125e7cb9e7df511f53e5c916c7d2 (diff) | |
Notes
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 27b0170a0ad4..2712d95ed276 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); |
