aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-01 21:29:05 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-01 21:33:48 +0300
commit05cd7f037c19cebde89b0ee2d974315390da6252 (patch)
tree6d12effcd227dd924675727015a57736fec0e3fe /src
parent81beb04105b5587a9f5cf03c3954cca77484daf3 (diff)
downloadlibmicrohttpd-05cd7f037c19cebde89b0ee2d974315390da6252.tar.gz
libmicrohttpd-05cd7f037c19cebde89b0ee2d974315390da6252.zip
digestauth.c: trust configure detection of variable length arrays
Diffstat (limited to 'src')
-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 6033c166..649fef62 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -63,7 +63,7 @@
63/** 63/**
64 * Macro to avoid using VLAs if the compiler does not support them. 64 * Macro to avoid using VLAs if the compiler does not support them.
65 */ 65 */
66#if __STDC_NO_VLA__ 66#ifndef HAVE_C_VARARRAYS
67/** 67/**
68 * Return #MAX_DIGEST. 68 * Return #MAX_DIGEST.
69 * 69 *