diff options
author | Jim Jagielski <jim@apache.org> | 2005-11-10 16:05:51 +0100 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2005-11-10 16:05:51 +0100 |
commit | 5d2fae4818e5eca5c32f439da1dbaed1bb2dad1b (patch) | |
tree | 2a13a8ff035825ec1a1ade1a3516f266c2ad38c7 /modules/ldap/util_ldap_cache.c | |
parent | Work if check_conn is NOTIMPL in a driver (diff) | |
download | apache2-5d2fae4818e5eca5c32f439da1dbaed1bb2dad1b.tar.xz apache2-5d2fae4818e5eca5c32f439da1dbaed1bb2dad1b.zip |
No functional change: simple detabbing of indented code.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@332305 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ldap/util_ldap_cache.c')
-rw-r--r-- | modules/ldap/util_ldap_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ldap/util_ldap_cache.c b/modules/ldap/util_ldap_cache.c index 904d1721d1..c717904fd8 100644 --- a/modules/ldap/util_ldap_cache.c +++ b/modules/ldap/util_ldap_cache.c @@ -247,8 +247,8 @@ int util_ldap_compare_node_compare(void *a, void *b) util_compare_node_t *nb = b; return (strcmp(na->dn, nb->dn) == 0 && - strcmp(na->attrib, nb->attrib) == 0 && - strcmp(na->value, nb->value) == 0); + strcmp(na->attrib, nb->attrib) == 0 && + strcmp(na->value, nb->value) == 0); } void *util_ldap_compare_node_copy(util_ald_cache_t *cache, void *c) |