right response headers when requiring authentication.
[Gertjan van Wingerde <Gertjan.van.Wingerde@cmg.nl>] PR#7114
(This is a port of the change that went into Apache 1.3.19.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88901
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.18-dev
+ *) Under certain circumstances, Apache did not supply the
+ right response headers when requiring authentication.
+ [Gertjan van Wingerde <Gertjan.van.Wingerde@cmg.nl>] PR#7114
+ (This is a port of the change that went into Apache 1.3.19.)
+
*) Allow modules to specify their own logging tags. This basically
allows a module to tell mod_log_config that when %x is encountered
a specific function should be called. Currently, x can be any single
/* If the request returned a redirect, propagate it to the client */
if (ap_is_HTTP_REDIRECT(rr->status) ||
- (rr->status == HTTP_NOT_ACCEPTABLE && num_names == 1)) {
+ (rr->status == HTTP_NOT_ACCEPTABLE && num_names == 1) ||
+ (rr->status == HTTP_UNAUTHORIZED && num_names == 1)) {
apr_pool_join(r->pool, rr->pool);
error_notfound = rr->status;