summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2017-05-20 05:08:06 +0000
committerChristophe Jaillet <jailletc36@apache.org>2017-05-20 05:08:06 +0000
commit3ed6ed8c02a0ed20b3c9220e92dde8d1c9c0e383 (patch)
tree8b4cd814a4f860319a7a57e347c1963d2df7a194
parent182db5c2af0c7459296744afb840ae57c8310451 (diff)
downloadhttpd-3ed6ed8c02a0ed20b3c9220e92dde8d1c9c0e383.tar.gz
Add an explicit NULL to initialise a field in an authn_provider structure, as done in all other places. PR 60636
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1795651 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/aaa/mod_authnz_ldap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/aaa/mod_authnz_ldap.c b/modules/aaa/mod_authnz_ldap.c
index f8b93a0ec2..fda8b96d4a 100644
--- a/modules/aaa/mod_authnz_ldap.c
+++ b/modules/aaa/mod_authnz_ldap.c
@@ -1911,6 +1911,7 @@ static int authnz_ldap_post_config(apr_pool_t *p, apr_pool_t *plog, apr_pool_t *
static const authn_provider authn_ldap_provider =
{
&authn_ldap_check_password,
+ NULL,
};
static const authz_provider authz_ldapuser_provider =