From 2b7805a3cc75aa6312febce626410d0ea3e0e3c6 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 7 Dec 1996 18:52:54 +0000 Subject: [PATCH] (strftime): Remove " %Z" part of format for %c. Suggestion from Paul Eggert. --- lib/strftime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.30.2