Changes with Apache 1.3.28
+ *) Fix bug where 'Satisfy Any' without an AuthType resulted in an
+ "Internal Server Error" response. PR 9076. [André Malo]
+
*) mod_rewrite: Allow "RewriteEngine Off" even if no
"Options FollowSymlinks" (or SymlinksIfOwnermatch) is set.
PR 12395. [André Malo]
}
break;
case SATISFY_ANY:
- if (((access_status = ap_check_access(r)) != 0) || !ap_auth_type(r)) {
+ if (((access_status = ap_check_access(r)) != 0)) {
if (!ap_some_auth_required(r)) {
- decl_die(access_status ? access_status :
- HTTP_INTERNAL_SERVER_ERROR,
- ap_auth_type(r) ? "check access"
- : "perform authentication. AuthType not set!", r);
+ decl_die(access_status, "check access", r);
return;
}
if (((access_status = ap_check_user_id(r)) != 0) || !ap_auth_type(r)) {