summaryrefslogtreecommitdiff
path: root/utils/http/content-type.c
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2018-04-22 01:24:45 +0000
committerJohn-Mark Bell <jmb@netsurf-browser.org>2018-04-22 11:39:12 +0000
commit1c05280b5cd23c94ed10c2a9415a500393100285 (patch)
treeeabf91c55538155713ad827de7f5ec0ada9f9723 /utils/http/content-type.c
parentbadc0d437adff453f046cd8f0eb46c4fa5afe2bf (diff)
downloadnetsurf-1c05280b5cd23c94ed10c2a9415a500393100285.tar.gz
netsurf-1c05280b5cd23c94ed10c2a9415a500393100285.tar.bz2
HSTS: add parser for Strict-Transport-Security
Diffstat (limited to 'utils/http/content-type.c')
-rw-r--r--utils/http/content-type.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/http/content-type.c b/utils/http/content-type.c
index f84da8c8e..d4279f512 100644
--- a/utils/http/content-type.c
+++ b/utils/http/content-type.c
@@ -68,7 +68,7 @@ nserror http_parse_content_type(const char *header_value,
http__skip_LWS(&pos);
if (*pos == ';') {
- error = http__item_list_parse(&pos,
+ error = http__item_list_parse(&pos,
http__parse_parameter, NULL, &params);
if (error != NSERROR_OK && error != NSERROR_NOT_FOUND) {
lwc_string_unref(subtype);