commit dd5b0d6407661442a64461f032871da7c8bdcd1b
parent 3a7126a3e25132dc01d238acb411fe7b77205929
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Tue, 27 Sep 2022 17:27:40 +0300
connection.c: fixed typo in comment
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
@@ -3155,7 +3155,7 @@ parse_http_version (struct MHD_Connection *connection,
const char *const h = http_string; /**< short alias */
mhd_assert (NULL != http_string);
- /* String must starts with 'HTTP/d.d', case-sensetive match.
+ /* String must start with 'HTTP/d.d', case-sensetive match.
* See https://datatracker.ietf.org/doc/html/rfc7230#section-2.6 */
if ((len != 8) ||
(h[0] != 'H') || (h[1] != 'T') || (h[2] != 'T') || (h[3] != 'P') ||