aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-11-16 11:21:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-11-16 11:21:50 +0000
commite6dd4a6456bee374800aaf7dd58a77cd52ef7a88 (patch)
tree1bdeceb56cee1f810470772a9532b7e9741126b8
parent8d62e210729fd6f4a5816e80d0c981b212022ce7 (diff)
Klevtsov Vadim's time condition fix
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index bb0c26e72..1573f4456 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");