aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/basicauth.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/basicauth.c')
-rw-r--r--src/microhttpd/basicauth.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/microhttpd/basicauth.c b/src/microhttpd/basicauth.c
index bb9e1ea4..0729b3ca 100644
--- a/src/microhttpd/basicauth.c
+++ b/src/microhttpd/basicauth.c
@@ -117,7 +117,8 @@ MHD_queue_basic_auth_fail_response (struct MHD_Connection *connection,
117 const char *realm, 117 const char *realm,
118 struct MHD_Response *response) 118 struct MHD_Response *response)
119{ 119{
120 int ret, res; 120 int ret;
121 int res;
121 size_t hlen = strlen(realm) + strlen("Basic realm=\"\"") + 1; 122 size_t hlen = strlen(realm) + strlen("Basic realm=\"\"") + 1;
122 char *header; 123 char *header;
123 124