X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fcookies.c;h=7f5ba96290cab3c583678c90fd482c02f96a741b;hp=6ba7b5a5a4ed9b482f3866124b9705e16310472e;hb=8624553a31b148f9051cc11725bc01d9760fa07b;hpb=4eeabffee6e5b348d36c4f3ba0579ed086226603 diff --git a/src/cookies.c b/src/cookies.c index 6ba7b5a5..7f5ba962 100644 --- a/src/cookies.c +++ b/src/cookies.c @@ -95,7 +95,7 @@ struct cookie { int port; /* port number */ char *path; /* path prefix of the cookie */ - unsigned discard_requested :1; /* whether cookie was created to + unsigned discard_requested :1;/* whether cookie was created to request discarding another cookie. */ @@ -393,7 +393,7 @@ parse_set_cookie (const char *set_cookie, bool silent) /* Check if expiration spec is valid. If not, assume default (cookie doesn't expire, but valid only for - this session.) */ + this session.) */ expires = http_atotm (value_copy); if (expires != (time_t) -1) { @@ -460,9 +460,9 @@ parse_set_cookie (const char *set_cookie, bool silent) #define REQUIRE_DIGITS(p) do { \ - if (!c_isdigit (*p)) \ + if (!c_isdigit (*p)) \ return false; \ - for (++p; c_isdigit (*p); p++) \ + for (++p; c_isdigit (*p); p++) \ ; \ } while (0)