X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_date_api.c;h=37047b602326187ecd20770609c158f58a7b8f71;hp=fc67a89f57b525163aa2b8e9a5a36aa3d7cae2c1;hb=c07ee6eaef449abb292bb84d5ba61c19a467e184;hpb=0ac32c9b8590e88a5f110cc8b3154001d5c0c089;ds=sidebyside diff --git a/http_date_api.c b/http_date_api.c index fc67a89..37047b6 100644 --- a/http_date_api.c +++ b/http_date_api.c @@ -18,13 +18,13 @@ #ifdef HAVE_CONFIG_H # include "config.h" #endif - -#include - #include "php.h" + #include "php_http.h" #include "php_http_std_defs.h" +#include + static int check_day(char *day, size_t len); static int check_month(char *month); static int check_tzone(char *tzone); @@ -132,7 +132,7 @@ static int check_month(char *month) static int check_tzone(char *tzone) { - int i; + unsigned i; const struct time_zone *check = time_zones; for (i = 0; i < sizeof(time_zones) / sizeof(time_zones[0]); i++) { if (!strcmp(tzone, check->name)) { @@ -175,7 +175,7 @@ PHP_HTTP_API time_t _http_parse_date(const char *date) enum assume_next dignext = DATE_MDAY; const char *indate = date; - int found = 0, part = 0; /* max 6 parts */ + int part = 0; /* max 6 parts */ while (*date && (part < 6)) { int found = 0;