From 4ef6d1b86f601e6a288e6c8cb399d3d0888ca783 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Sat, 4 Mar 2023 04:04:09 +0100 Subject: http.c: Compare headers as case-insensitive Web browsers such as lynx send "Content-length" instead of "Content-Length" (as done by LibreWolf and Chromium). --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.c b/http.c index 71a872e..5c4626b 100644 --- a/http.c +++ b/http.c @@ -790,7 +790,7 @@ static int process_header(struct http_ctx *const h, const char *const line, const struct header *const hdr = &headers[i]; int ret; - if (!strncmp(line, hdr->header, n) && (ret = hdr->f(h, value))) + if (!strncasecmp(line, hdr->header, n) && (ret = hdr->f(h, value))) return ret; } -- cgit v1.2.3