You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Joe Orton <jo...@redhat.com> on 2008/04/07 14:12:05 UTC

Re: svn commit: r644525 - in /httpd/httpd/trunk: ./ include/ modules/aaa/ modules/examples/ modules/ssl/ server/

On Thu, Apr 03, 2008 at 09:51:09PM -0000, chrisd@apache.org wrote:
> Author: chrisd
> Date: Thu Apr  3 14:51:07 2008
> New Revision: 644525
> 
> URL: http://svn.apache.org/viewvc?rev=644525&view=rev
> Log:
> Avoid calling access control hooks for internal requests with
> configurations which match those of the initial request.  Revert to
> the original behaviour (call access control hooks for internal requests
> with URIs different from the initial request) if any access control hooks
> or providers are not registered as permitting this optimization.
> Introduce wrappers for access control hook and provider registration
> which can accept additional mode and flag data.

The ap_clear_auth_internal() definition doesn't match the way it's 
called.

server/main.c:        ap_clear_auth_internal(server_conf);
server/request.c:AP_DECLARE(void) ap_clear_auth_internal(void)

(I just fixed the header to match the request.c definition)

joe