summaryrefslogtreecommitdiff
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
commit2b7805a3cc75aa6312febce626410d0ea3e0e3c6 (patch)
tree02163defabef3295a74f2846beeb5b539069beb0
parentd9235ece17ada5f72bf9ff486667358d99883a2d (diff)
downloadgnulib-2b7805a3cc75aa6312febce626410d0ea3e0e3c6.tar.gz
(strftime): Remove " %Z" part of format for %c. Suggestion from Paul Eggert.
-rw-r--r--lib/strftime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strftime.c b/lib/strftime.c
index 489911f339..716f6530a6 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: