commit 8caa25a528347578c51f099e5782a238f61db17c parent 805a4b8e22dbf3d8db414d029e765cb67a3e0fda Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev> Date: Tue, 11 Nov 2025 06:57:35 +0100 mhd_str.c: fixed functionality when building without inline support Diffstat:
| M | src/mhd2/mhd_str.c | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/mhd2/mhd_str.c b/src/mhd2/mhd_str.c @@ -984,9 +984,9 @@ static const char map_value_to_xdigit[16] = * @return boolean 'true' if chars are caseless equal, false otherwise */ #define charsequalcaseless(c1, c2) \ - ( ((c1) == (c2)) || \ - (((0x20u | (unsigned char) c1) == (0x20u | (unsigned char) c2)) && \ - toasciilower (((char) (0x20u | (unsigned char) c2)))) ) + (((c1) == (c2)) || \ + (((0x20u | (unsigned char) (c1)) == (0x20u | (unsigned char) (c2))) \ + && isasciilower (((char) (0x20u | (unsigned char) (c2))))) ) #endif /* !HAVE_INLINE_FUNCS */