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:46:44 UTC

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

Author: covener
Date: Tue May  8 12:46:44 2018
New Revision: 1831171

URL: http://svn.apache.org/viewvc?rev=1831171&view=rev
Log:
style fix for r1831165

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=1831171&r1=1831170&r2=1831171&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ldap/util_ldap.c (original)
+++ httpd/httpd/trunk/modules/ldap/util_ldap.c Tue May  8 12:46:44 2018
@@ -76,7 +76,7 @@ static const char *ldap_cache_mutex_type
 static apr_status_t uldap_connection_unbind(void *param);
 
 
-static APR_INLINE apr_status_t ldap_cache_lock(util_ldap_state_t* st, request_rec *r) { 
+static APR_INLINE apr_status_t ldap_cache_lock(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_lock(st->util_ldap_cache_lock);
@@ -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 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);