diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-10-26 16:21:35 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-10-26 16:21:35 +0000 |
| commit | 7f2af2d612a9886b9f5435a59b1c6f5750ba83c0 (patch) | |
| tree | ac64818e8b442ac535bddbc2154f0b84905f74a7 /lib/libc | |
| parent | fe91028da9f28162b9557babd1c06f8c097c2322 (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/stdtime/timelocal.c | 6 | ||||
| -rw-r--r-- | lib/libc/stdtime/timelocal.h | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/lib/libc/stdtime/timelocal.c b/lib/libc/stdtime/timelocal.c index c7fd1bba1a7f..3a810edfb523 100644 --- a/lib/libc/stdtime/timelocal.c +++ b/lib/libc/stdtime/timelocal.c @@ -78,11 +78,9 @@ const struct lc_time_T _C_time_locale = { /* ** c_fmt (ctime-compatible) - ** Note that - ** "%a %b %d %H:%M:%S %Y" - ** is used by Solaris 2.3. + ** Not used, just compatibility placeholder. */ - "%a %Ef %X %Y", + NULL, /* am */ "AM", diff --git a/lib/libc/stdtime/timelocal.h b/lib/libc/stdtime/timelocal.h index 19b9d21730d9..b5ab91dfb6a8 100644 --- a/lib/libc/stdtime/timelocal.h +++ b/lib/libc/stdtime/timelocal.h @@ -37,7 +37,7 @@ struct lc_time_T { const char * weekday[7]; const char * X_fmt; const char * x_fmt; - const char * c_fmt; + const char * c_fmt; /* not used, just compatibility placeholder */ const char * am; const char * pm; const char * date_fmt; |
