From 96061c1e5e76cadafd333997bad75094342d7da9 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Mon, 7 Jan 2019 03:32:43 -0500 Subject: [PATCH] [mod_auth] permit additional auth backends to load (For testing purposes, allow for all current auth module backends to be loaded and registered at the same time) --- src/http_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http_auth.c b/src/http_auth.c index 035922b0..484da8ff 100644 --- a/src/http_auth.c +++ b/src/http_auth.c @@ -29,7 +29,7 @@ void http_auth_scheme_set (const http_auth_scheme_t *scheme) } -static http_auth_backend_t http_auth_backends[8]; +static http_auth_backend_t http_auth_backends[12]; const http_auth_backend_t * http_auth_backend_get (const buffer *name) {