summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-12-07 18:52:54 +0000
committerJim Meyering <jim@meyering.net>1996-12-07 18:52:54 +0000
commitb1cc66221504846a8b72ee2bb86741f0934a230f (patch)
tree42a6a73c3e5b7e1ea9b4ef658691ff056b2991d7 /lib
parentf86a3c16d3d565e201afc3fcd4d5a10adc52d63f (diff)
downloadcoreutils-b1cc66221504846a8b72ee2bb86741f0934a230f.tar.xz
(strftime): Remove " %Z" part of format for %c. Suggestion from Paul Eggert.
Diffstat (limited to 'lib')
-rw-r--r--lib/strftime.c2
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: