removed an unnecessary #ifdef WIN32

This commit is contained in:
Daniel Stenberg 2000-03-16 11:40:48 +00:00
parent 14253f34f4
commit 0aa3f705c2
1 changed files with 1 additions and 1 deletions

View File

@ -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