You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2017/05/20 05:08:06 UTC

svn commit: r1795651 - /httpd/httpd/trunk/modules/aaa/mod_authnz_ldap.c

Author: jailletc36
Date: Sat May 20 05:08:06 2017
New Revision: 1795651

URL: http://svn.apache.org/viewvc?rev=1795651&view=rev
Log:
Add an explicit NULL to initialise a field in an authn_provider structure, as done in all other places.  PR 60636

Modified:
    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=1795651&r1=1795650&r2=1795651&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_authnz_ldap.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_authnz_ldap.c Sat May 20 05:08:06 2017
@@ -1911,6 +1911,7 @@ static int authnz_ldap_post_config(apr_p
 static const authn_provider authn_ldap_provider =
 {
     &authn_ldap_check_password,
+    NULL,
 };
 
 static const authz_provider authz_ldapuser_provider =