Klevtsov Vadim's time condition fix

This commit is contained in:
Daniel Stenberg 2001-11-16 11:21:50 +00:00
parent 8d62e21072
commit e6dd4a6456
1 changed files with 1 additions and 1 deletions

View File

@ -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");