commit 03002036f7f973ca6414cb215991ac141e627fd7
parent a2f60e89419154ea02c7b28558abcfb3c2fc0955
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date: Sun, 21 Dec 2025 17:54:03 +0100
mhd_enum_to_str.c: fixed wrong version string
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mhd2/mhd_enum_to_str.c b/src/mhd2/mhd_enum_to_str.c
@@ -57,7 +57,7 @@ MHD_protocol_version_to_string (enum MHD_HTTP_ProtocolVersion pv)
static const struct MHD_String results[] = {
mhd_MSTR_INIT ("invalid"),
mhd_MSTR_INIT ("HTTP/1.0"),
- mhd_MSTR_INIT ("HTTP/1.2"),
+ mhd_MSTR_INIT ("HTTP/1.1"),
mhd_MSTR_INIT ("HTTP/2"),
mhd_MSTR_INIT ("HTTP/3")
};