aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/digestauth.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/digestauth.c')
-rw-r--r--src/microhttpd/digestauth.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index 59f999f4..a1b7bcf4 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -83,9 +83,8 @@
83/** 83/**
84 * Check that @a n is below #MAX_DIGEST 84 * Check that @a n is below #MAX_DIGEST
85 */ 85 */
86#define VLA_CHECK_LEN_DIGEST(n) do { if ((n) > MAX_DIGEST) mhd_panic ( \ 86#define VLA_CHECK_LEN_DIGEST(n) \
87 mhd_panic_cls, __FILE__, __LINE__, \ 87 do { if ((n) > MAX_DIGEST) MHD_PANIC (_ ("VLA too big.\n")); } while (0)
88 "VLA too big.\n"); } while (0)
89 88
90 89
91/** 90/**