mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-26 04:09:30 +03:00
Silent compiler warning
This commit is contained in:
@@ -135,7 +135,7 @@ MHD_queue_basic_auth_fail_response (struct MHD_Connection *connection,
|
||||
hlen,
|
||||
"Basic realm=\"%s\"",
|
||||
realm);
|
||||
if (res > 0 && res < hlen)
|
||||
if (res > 0 && (size_t)res < hlen)
|
||||
ret = MHD_add_response_header (response,
|
||||
MHD_HTTP_HEADER_WWW_AUTHENTICATE,
|
||||
header);
|
||||
|
||||
Reference in New Issue
Block a user