From 218cc70028fc3343bca55283186e909f7fbd4711 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 1 Apr 2022 16:03:40 +0200 Subject: [PATCH] http: correct the header error message to say colon Not semicolon Reported-by: Gisle Vanem Ref: #8666 Closes #8667 --- lib/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http.c b/lib/http.c index dd0d9879e3..e3a517354d 100644 --- a/lib/http.c +++ b/lib/http.c @@ -3792,7 +3792,7 @@ static CURLcode verify_header(struct Curl_easy *data) ptr = memchr(header, ':', hlen); if(!ptr) { /* this is bad, bail out */ - failf(data, "Header without semicolon"); + failf(data, "Header without colon"); return CURLE_WEIRD_SERVER_REPLY; } return CURLE_OK; -- 2.47.3