Skip to content

Commit 24f2529

Browse files
committed
fix ap2.2 AUTHZ_DENIED undefined error
1 parent 3ca8c0e commit 24f2529

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mod_auth_memcookie.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ static int Auth_memCookie_check_auth(request_rec *r)
742742
if (szGroups==NULL) {
743743
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, LOGTAG_PREFIX
744744
"authorization denied: no group asociated to the session");
745-
return AUTHZ_DENIED;
745+
return AUTH_DENIED;
746746
}
747747
while(*szRequireLine && (szGroup = ap_getword_white(r->pool, &szRequireLine))) {
748748
ap_log_rerror(APLOG_MARK, APLOG_INFO|APLOG_NOERRNO, 0, r ,LOGTAG_PREFIX "check group '%s' in '%s'",szGroup,szGroups);

0 commit comments

Comments
 (0)