Fix type of value_was_quoted member of cookie_data struct.

svn path=/trunk/netsurf/; revision=4166
This commit is contained in:
John Mark Bell 2008-05-16 10:27:01 +00:00
parent b15a6af3d2
commit fbb483e0ff

View File

@ -44,7 +44,7 @@ struct url_data {
struct cookie_data {
const char *name; /**< Cookie name */
const char *value; /**< Cookie value */
const char value_was_quoted; /**< Value was quoted in Set-Cookie: */
const bool value_was_quoted; /**< Value was quoted in Set-Cookie: */
const char *comment; /**< Cookie comment */
const bool domain_from_set; /**< Domain came from Set-Cookie: header */
const char *domain; /**< Domain */