commit | 0aa3f705c21a49d43ce5f2e7bdd7a8686c1ee418 | [log] [tgz] |
---|---|---|
author | Daniel Stenberg <daniel@haxx.se> | Thu Mar 16 11:40:48 2000 +0000 |
committer | Daniel Stenberg <daniel@haxx.se> | Thu Mar 16 11:40:48 2000 +0000 |
tree | 1dc821cf111f92af40ca41026d5e46a8e38a96d6 | |
parent | 14253f34f49f998f2552de1c1c47bb663cbb6fc3 [diff] |
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