summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-03-16 11:40:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-03-16 11:40:48 +0000
commit0aa3f705c21a49d43ce5f2e7bdd7a8686c1ee418 (patch)
tree1dc821cf111f92af40ca41026d5e46a8e38a96d6
parent14253f34f49f998f2552de1c1c47bb663cbb6fc3 (diff)
downloadcurl-0aa3f705c21a49d43ce5f2e7bdd7a8686c1ee418.tar.gz
removed an unnecessary #ifdef WIN32
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 7bbf13b7a..3f030b4a1 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -253,7 +253,7 @@ UrgError http(struct UrlData *data, char *ppath, char *host, long *bytecount)
thistime = localtime(&data->timevalue);
-#if defined(HAVE_STRFTIME) || defined(WIN32)
+#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);
#else