2
0
Fork 0

mod_auth: fix is_handled check

personal/stbuehler/wip
Stefan Bühler 2009-12-19 18:23:47 +01:00
parent 130a40e691
commit e92a6e8865
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ static liHandlerResult auth_basic(liVRequest *vr, gpointer param, gpointer *cont
UNUSED(context);
if (!li_vrequest_is_handled(vr)) {
if (li_vrequest_is_handled(vr)) {
/* only allow access restrictions as previous handlers */
switch (vr->response.http_status) { /* use same list as in auth_handle_deny */
case 401: /* Unauthorized */