removed an unnecessary #ifdef WIN32
diff --git a/lib/http.c b/lib/http.c
index 7bbf13b..3f030b4 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -253,7 +253,7 @@
 
       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