Skip to content
Snippets Groups Projects
Commit e6dd4a64 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Klevtsov Vadim's time condition fix

parent 8d62e210
No related branches found
No related tags found
No related merge requests found
......@@ -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");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment