aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-09-29 18:53:17 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-09-29 18:53:43 +0300
commit3ddb4e562b4422a7d7664b83af4e3a2febf4014d (patch)
treec7bbd5bd50197b12f89f4078c7751807ee17cb57
parent27c939adae21c122325ccdf5c67761df791661e6 (diff)
downloadlibmicrohttpd-3ddb4e562b4422a7d7664b83af4e3a2febf4014d.tar.gz
libmicrohttpd-3ddb4e562b4422a7d7664b83af4e3a2febf4014d.zip
digestauth.c: refined comment
-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 dc277249..ace3cdc2 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -190,7 +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 (void)hentity; /* Unused. Silent compiler warning. */
194 194
195 MD5Init (&md5); 195 MD5Init (&md5);
196 MD5Update (&md5, 196 MD5Update (&md5,