summaryrefslogtreecommitdiff
path: root/utils/http/challenge.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/challenge.c
parentbadc0d437adff453f046cd8f0eb46c4fa5afe2bf (diff)
downloadnetsurf-1c05280b5cd23c94ed10c2a9415a500393100285.tar.gz
netsurf-1c05280b5cd23c94ed10c2a9415a500393100285.tar.bz2
HSTS: add parser for Strict-Transport-Security
Diffstat (limited to 'utils/http/challenge.c')
-rw-r--r--utils/http/challenge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/http/challenge.c b/utils/http/challenge.c
index 578532e97..9b85fccbc 100644
--- a/utils/http/challenge.c
+++ b/utils/http/challenge.c
@@ -92,7 +92,7 @@ nserror http__parse_challenge(const char **input, http_challenge **challenge)
http__skip_LWS(&pos);
if (*pos == ',') {
- error = http__item_list_parse(&pos,
+ error = http__item_list_parse(&pos,
http__parse_parameter, first, &params);
if (error != NSERROR_OK && error != NSERROR_NOT_FOUND) {
lwc_string_unref(scheme);