diff options
author | Jim Meyering <jim@meyering.net> | 1996-12-07 18:52:54 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-12-07 18:52:54 +0000 |
commit | b1cc66221504846a8b72ee2bb86741f0934a230f (patch) | |
tree | 42a6a73c3e5b7e1ea9b4ef658691ff056b2991d7 /lib | |
parent | f86a3c16d3d565e201afc3fcd4d5a10adc52d63f (diff) | |
download | coreutils-b1cc66221504846a8b72ee2bb86741f0934a230f.tar.xz |
(strftime): Remove " %Z" part of format for %c. Suggestion from Paul Eggert.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strftime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strftime.c b/lib/strftime.c index 489911f33..716f6530a 100644 --- a/lib/strftime.c +++ b/lib/strftime.c @@ -461,7 +461,7 @@ strftime (s, maxsize, format, tp) && *(subfmt = _NL_CURRENT (LC_TIME, ERA_D_T_FMT)) != '\0')) subfmt = _NL_CURRENT (LC_TIME, D_T_FMT); #else - subfmt = "%a %b %e %H:%M:%S %Z %Y"; + subfmt = "%a %b %e %H:%M:%S %Y"; #endif subformat: |