summaryrefslogtreecommitdiff
path: root/modules/ldap
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2015-09-30 08:35:35 +0000
committerChristophe Jaillet <jailletc36@apache.org>2015-09-30 08:35:35 +0000
commit68131d85a4bd75d6f727b55f7ef5d185fa5938e6 (patch)
tree40095a56ba4ec865ae8558af9aaf0fb697bba3cc /modules/ldap
parent844e85ad0dfcd6670a1283fd43f4514407a53822 (diff)
downloadhttpd-68131d85a4bd75d6f727b55f7ef5d185fa5938e6.tar.gz
Fix some style issues on files that can easily be synch'ed with 2.4.x
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1705983 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ldap')
-rw-r--r--modules/ldap/util_ldap_cache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/ldap/util_ldap_cache.c b/modules/ldap/util_ldap_cache.c
index b1346f0512..d8c1ed9b5b 100644
--- a/modules/ldap/util_ldap_cache.c
+++ b/modules/ldap/util_ldap_cache.c
@@ -181,8 +181,8 @@ void *util_ldap_search_node_copy(util_ald_cache_t *cache, void *c)
util_ldap_search_node_free(cache, newnode);
return NULL;
}
- if(node->bindpw) {
- if(!(newnode->bindpw = util_ald_strdup(cache, node->bindpw))) {
+ if (node->bindpw) {
+ if (!(newnode->bindpw = util_ald_strdup(cache, node->bindpw))) {
util_ldap_search_node_free(cache, newnode);
return NULL;
}
@@ -305,14 +305,14 @@ void util_ldap_compare_node_display(request_rec *r, util_ald_cache_t *cache, voi
cmp_result = apr_itoa(r->pool, node->result);
}
- if(node->subgroupList) {
+ if (node->subgroupList) {
sub_groups_val = "Yes";
}
else {
sub_groups_val = "No";
}
- if(node->sgl_processed) {
+ if (node->sgl_processed) {
sub_groups_checked = "Yes";
}
else {