X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fcookies.c;h=6b8b7b7f5212d87ec4eaf6a250e115807f16baf0;hp=7534670fcd00ff5b34e8e3967202fe919acfb42a;hb=462e643a7e31676eceda23e634241f7b4d2cd7bb;hpb=3073a77ed89e7d9527d110a028d134bfd1f9cb40 diff --git a/src/cookies.c b/src/cookies.c index 7534670f..6b8b7b7f 100644 --- a/src/cookies.c +++ b/src/cookies.c @@ -43,7 +43,7 @@ as that of the covered work. */ sites that do send Set-Cookie2 also emit Set-Cookie for compatibility. */ -#include +#include "wget.h" #include #include @@ -51,8 +51,6 @@ as that of the covered work. */ #include #include #include - -#include "wget.h" #include "utils.h" #include "hash.h" #include "cookies.h" @@ -457,9 +455,9 @@ parse_set_cookie (const char *set_cookie, bool silent) #define REQUIRE_DIGITS(p) do { \ - if (!ISDIGIT (*p)) \ + if (!c_isdigit (*p)) \ return false; \ - for (++p; ISDIGIT (*p); p++) \ + for (++p; c_isdigit (*p); p++) \ ; \ } while (0) @@ -1103,7 +1101,7 @@ domain_port (const char *domain_b, const char *domain_e, const char *colon = memchr (domain_b, ':', domain_e - domain_b); if (!colon) return 0; - for (p = colon + 1; p < domain_e && ISDIGIT (*p); p++) + for (p = colon + 1; p < domain_e && c_isdigit (*p); p++) port = 10 * port + (*p - '0'); if (p < domain_e) /* Garbage following port number. */ @@ -1154,7 +1152,7 @@ cookie_jar_load (struct cookie_jar *jar, const char *file) char *value_b = NULL, *value_e = NULL; /* Skip leading white-space. */ - while (*p && ISSPACE (*p)) + while (*p && c_isspace (*p)) ++p; /* Ignore empty lines. */ if (!*p || *p == '#')