libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

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:
Msrc/microhttpd/connection.c | 2+-
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') ||