summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-05-16 10:27:01 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-05-16 10:27:01 +0000
commitfbb483e0ff02d6295ee0fb320c27c325a6182d5e (patch)
tree2fea2ba3615e86559a63b05882f47bc095988315 /content
parentb15a6af3d29ad844bdd44eb6181d069958afab5b (diff)
downloadnetsurf-fbb483e0ff02d6295ee0fb320c27c325a6182d5e.tar.gz
netsurf-fbb483e0ff02d6295ee0fb320c27c325a6182d5e.tar.bz2
Fix type of value_was_quoted member of cookie_data struct.
svn path=/trunk/netsurf/; revision=4166
Diffstat (limited to 'content')
-rw-r--r--content/urldb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/urldb.h b/content/urldb.h
index 08b0b0804..70a873a37 100644
--- a/content/urldb.h
+++ b/content/urldb.h
@@ -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 */