aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-06-23 10:13:35 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-06-23 11:39:00 +0300
commit2de47d2007c7708e74ceefe689b848c23c459c8e (patch)
tree66ac359007da43a8a719b2c968bc691234eb9df0
parent23d69214bdbd0ed8a4695cfb19759af9f8f930b8 (diff)
downloadlibmicrohttpd-2de47d2007c7708e74ceefe689b848c23c459c8e.tar.gz
libmicrohttpd-2de47d2007c7708e74ceefe689b848c23c459c8e.zip
digestauth: use size_t for counting headers
-rw-r--r--src/microhttpd/digestauth.c2
1 files changed, 1 insertions, 1 deletions
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,
1188struct test_header_param 1188struct test_header_param
1189{ 1189{
1190 struct MHD_Connection *connection; 1190 struct MHD_Connection *connection;
1191 unsigned int num_headers; 1191 size_t num_headers;
1192}; 1192};
1193 1193
1194/** 1194/**