2
0
Fork 0

[mod_auth] return 403 instead of 401 in auth.deny

personal/stbuehler/wip
Thomas Porzelt 2010-11-13 17:28:49 +01:00
parent 9b7c9c2d81
commit 6c70cba7cb
1 changed files with 1 additions and 1 deletions

View File

@ -595,7 +595,7 @@ static liHandlerResult auth_handle_deny(liVRequest *vr, gpointer param, gpointer
return LI_HANDLER_GO_ON;
}
vr->response.http_status = 401;
vr->response.http_status = 403;
return LI_HANDLER_GO_ON;
}