- last mhash algo was missed
[m6w6/ext-http] / http_date_api.c
index c59b2cfe4c00e172ec1cfa3af93c73b75f27748d..37047b602326187ecd20770609c158f58a7b8f71 100644 (file)
@@ -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;