1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

and moved back the month array to a static one since the ftp code won't need

it anymore
This commit is contained in:
Daniel Stenberg 2004-09-13 20:49:27 +00:00
parent 33f69c0546
commit adbe3eefb6

View File

@ -84,15 +84,13 @@
#include <curl/curl.h>
#include "parsedate.h"
static time_t Curl_parsedate(const char *date);
static const char *wkday[] = {"Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"};
static const char *weekday[] = { "Monday", "Tuesday", "Wednesday", "Thursday",
"Friday", "Saturday", "Sunday" };
const char *Curl_month[]= { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
"Aug", "Sep", "Oct", "Nov", "Dec" };
static const char *month[]= { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
"Aug", "Sep", "Oct", "Nov", "Dec" };
struct tzinfo {
const char *name;
@ -177,7 +175,7 @@ static int checkmonth(char *check)
const char **what;
bool found= FALSE;
what = &Curl_month[0];
what = &month[0];
for(i=0; i<12; i++) {
if(curl_strequal(check, what[0])) {
found=TRUE;