diff --git a/lib/http.c b/lib/http.c
index bb0c26e72eb4a16e36c1dc1e3e80cf383e081069..1573f445689a7e083ed3fc943285026ca5eea43b 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -751,7 +751,7 @@ CURLcode Curl_http(struct connectdata *conn)
 
 #ifdef HAVE_STRFTIME
       /* format: "Tue, 15 Nov 1994 12:45:26 GMT" */
-      strftime(buf, BUFSIZE-1, "%a, %d %b %Y %H:%M:%S %Z", thistime);
+      strftime(buf, BUFSIZE-1, "%a, %d %b %Y %H:%M:%S GMT", thistime);
 #else
       /* TODO: Right, we *could* write a replacement here */
       strcpy(buf, "no strftime() support");