From 2de47d2007c7708e74ceefe689b848c23c459c8e Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Thu, 23 Jun 2022 10:13:35 +0300 Subject: [PATCH] digestauth: use size_t for counting headers --- src/microhttpd/digestauth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c index eb824fe2..41a016df 100644 --- a/src/microhttpd/digestauth.c +++ b/src/microhttpd/digestauth.c @@ -1188,7 +1188,7 @@ calculate_add_nonce_with_retry (struct MHD_Connection *const connection, struct test_header_param { struct MHD_Connection *connection; - unsigned int num_headers; + size_t num_headers; }; /**