X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fcookies.c;h=2e41688632d77455af8abd18990aacbfe1826c89;hp=bdc32745b9e2afeaefdfe2010793eb0ba6b7b199;hb=2f6aa1d7417df1dfc58597777686fbd77179b9fd;hpb=2c772204111e678b7715937052c3e7217a42e1ad diff --git a/src/cookies.c b/src/cookies.c index bdc32745..2e416886 100644 --- a/src/cookies.c +++ b/src/cookies.c @@ -1,6 +1,6 @@ /* Support for cookies. - Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, - 2008 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, + 2010, 2011 Free Software Foundation, Inc. This file is part of GNU Wget. @@ -441,7 +441,8 @@ parse_set_cookie (const char *set_cookie, bool silent) if (!silent) logprintf (LOG_NOTQUIET, _("Syntax error in Set-Cookie: %s at position %d.\n"), - escnonprint (set_cookie), (int) (ptr - set_cookie)); + quotearg_style (escape_quoting_style, set_cookie), + (int) (ptr - set_cookie)); delete_cookie (cookie); return NULL; } @@ -586,7 +587,7 @@ check_domain_match (const char *cookie_domain, const char *host) if (dccount == 2) { - int i; + size_t i; int known_toplevel = false; static const char *known_toplevel_domains[] = { ".com", ".edu", ".net", ".org", ".gov", ".mil", ".int" @@ -683,7 +684,8 @@ cookie_handle_set_cookie (struct cookie_jar *jar, { logprintf (LOG_NOTQUIET, _("Cookie coming from %s attempted to set domain to %s\n"), - escnonprint (host), escnonprint (cookie->domain)); + quotearg_style (escape_quoting_style, host), + quotearg_style (escape_quoting_style, cookie->domain)); xfree (cookie->domain); goto copy_domain; } @@ -731,7 +733,7 @@ cookie_handle_set_cookie (struct cookie_jar *jar, /* Support for sending out cookies in HTTP requests, based on previously stored cookies. Entry point is `build_cookies_request'. */ - + /* Return a count of how many times CHR occurs in STRING. */ static int