From: Daniel Stenberg Date: Thu, 16 Mar 2000 11:40:48 +0000 (+0000) Subject: removed an unnecessary #ifdef WIN32 X-Git-Tag: curl-6_5_1~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0aa3f705c21a49d43ce5f2e7bdd7a8686c1ee418;p=thirdparty%2Fcurl.git removed an unnecessary #ifdef WIN32 --- diff --git a/lib/http.c b/lib/http.c index 7bbf13b7a3..3f030b4a1d 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