commit 94c0fd7183e59df3db8e6ef7681374914040adc6
parent 085bc845053128b653963c0c563dfa09902f3ec1
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 8 Apr 2016 19:04:01 +0000
one variable per line
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/microhttpd/basicauth.c b/src/microhttpd/basicauth.c
@@ -117,7 +117,8 @@ MHD_queue_basic_auth_fail_response (struct MHD_Connection *connection,
const char *realm,
struct MHD_Response *response)
{
- int ret, res;
+ int ret;
+ int res;
size_t hlen = strlen(realm) + strlen("Basic realm=\"\"") + 1;
char *header;