You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2018/05/08 12:48:13 UTC

svn commit: r1831172 - /httpd/httpd/trunk/modules/ldap/util_ldap.c

Author: covener
Date: Tue May  8 12:48:13 2018
New Revision: 1831172

URL: http://svn.apache.org/viewvc?rev=1831172&view=rev
Log:
fix bld break in r1831165

I had to disable -Werror in maintainer mode for this file in darwin :/


Modified:
    httpd/httpd/trunk/modules/ldap/util_ldap.c

Modified: httpd/httpd/trunk/modules/ldap/util_ldap.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ldap/util_ldap.c?rev=1831172&r1=1831171&r2=1831172&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ldap/util_ldap.c (original)
+++ httpd/httpd/trunk/modules/ldap/util_ldap.c Tue May  8 12:48:13 2018
@@ -87,7 +87,7 @@ static APR_INLINE apr_status_t ldap_cach
     }
     return rv; 
 }
-static APR_INLINE ldap_cache_unlock(util_ldap_state_t *st, request_rec *r) { 
+static APR_INLINE apr_status_t ldap_cache_unlock(util_ldap_state_t *st, request_rec *r) { 
     apr_status_t rv = APR_SUCCESS;
     if (st->util_ldap_cache_lock) { 
         apr_status_t rv = apr_global_mutex_unlock(st->util_ldap_cache_lock);