You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2010/05/31 09:15:35 UTC

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

Author: rpluem
Date: Mon May 31 07:15:35 2010
New Revision: 949673

URL: http://svn.apache.org/viewvc?rev=949673&view=rev
Log:
* Fix compiler warning

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=949673&r1=949672&r2=949673&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_authnz_ldap.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_authnz_ldap.c Mon May 31 07:15:35 2010
@@ -354,7 +354,8 @@ static apr_status_t authnz_ldap_cleanup_
 
 static int set_request_vars(request_rec *r, enum auth_ldap_phase phase) { 
     char *prefix = NULL;
-    int prefix_len, remote_user_attribute_set;
+    int prefix_len;
+    int remote_user_attribute_set = 0;
     authn_ldap_request_t *req =
         (authn_ldap_request_t *)ap_get_module_config(r->request_config, &authnz_ldap_module);
     authn_ldap_config_t *sec =