Re: svn commit: r672639 - in /httpd/httpd/trunk: CHANGES inc…

Top Page

Reply to this message
Author: Ruediger Pluem
Date:  
To: dev
New-Topics: Re: svn commit: r672639 - in /httpd/httpd/trunk: CHANGES include/ap_mmn.h include/mod_auth.h modules/aaa/mod_auth_digest.c modules/aaa/mod_authn_core.c modules/aaa/mod_authn_dbm.c modules/aaa/mod_auth
Subject: Re: svn commit: r672639 - in /httpd/httpd/trunk: CHANGES include/ap_mmn.h include/mod_auth.h modules/aaa/mod_auth_digest.c modules/aaa/mod_authn_core.c modules/aaa/mod_authn_dbm.c modules/aaa/mod_au


On 06/29/2008 06:42 PM, covener@??? wrote:
> Author: covener
> Date: Sun Jun 29 09:42:43 2008
> New Revision: 672639
>
> URL: http://svn.apache.org/viewvc?rev=672639&view=rev
> Log:
> mod_auth_digest: Detect during startup when AuthDigestProvider
> is configured to use an incompatible provider via AuthnProviderAlias.
> PR 45196
>
>
> Modified:
> httpd/httpd/trunk/CHANGES
> httpd/httpd/trunk/include/ap_mmn.h
> httpd/httpd/trunk/include/mod_auth.h
> httpd/httpd/trunk/modules/aaa/mod_auth_digest.c
> httpd/httpd/trunk/modules/aaa/mod_authn_core.c
> httpd/httpd/trunk/modules/aaa/mod_authn_dbm.c
> httpd/httpd/trunk/modules/aaa/mod_authn_file.c
> httpd/httpd/trunk/modules/aaa/mod_authnz_ldap.c
>


>
> Modified: httpd/httpd/trunk/modules/aaa/mod_authnz_ldap.c
> URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/aaa/mod_authnz_ldap.c?rev=672639&r1=672638&r2=672639&view=diff
> ==============================================================================
> --- httpd/httpd/trunk/modules/aaa/mod_authnz_ldap.c (original)
> +++ httpd/httpd/trunk/modules/aaa/mod_authnz_ldap.c Sun Jun 29 09:42:43 2008
> @@ -1538,9 +1538,23 @@
> return OK;
> }
>
> +static authn_status authn_ldap_get_realm_hash(request_rec *r, const char *user,
> + const char *realm, char **rethash)
> +{
> + return AUTH_GENERAL_ERROR;
> +
> +}
> +
> +static apr_status_t authn_ldap_has_realm_hash(cmd_parms *cmd, const char *provider_name)
> +{
> + return APR_ENOTIMPL;
> +}
> +
> static const authn_provider authn_ldap_provider =
> {
> &authn_ldap_check_password,
> + authn_ldap_get_realm_hash,


An '&' is missing above.

Regards

Rüdiger