aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-09-28 20:50:50 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-09-28 20:50:50 +0300
commit73897ef5a15ada07806cb3fd2f509a42030a0cee (patch)
tree281cdbf072753d8442a93d23ea206ffd7220acb2
parent4e18379e5155429dcb944a856e0a1607c64d5c47 (diff)
downloadlibmicrohttpd-73897ef5a15ada07806cb3fd2f509a42030a0cee.tar.gz
libmicrohttpd-73897ef5a15ada07806cb3fd2f509a42030a0cee.zip
digestauth.c: muted compiler warning
-rw-r--r--src/microhttpd/digestauth.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index f1f55dfa..dc277249 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -190,6 +190,7 @@ digest_calc_response (const char ha1[HASH_MD5_HEX_LEN + 1],
190 unsigned char ha2[MD5_DIGEST_SIZE]; 190 unsigned char ha2[MD5_DIGEST_SIZE];
191 unsigned char resphash[MD5_DIGEST_SIZE]; 191 unsigned char resphash[MD5_DIGEST_SIZE];
192 char ha2hex[HASH_MD5_HEX_LEN + 1]; 192 char ha2hex[HASH_MD5_HEX_LEN + 1];
193 (void)hentity; /* Silent compiler warning. */
193 194
194 MD5Init (&md5); 195 MD5Init (&md5);
195 MD5Update (&md5, 196 MD5Update (&md5,