summaryrefslogtreecommitdiffstats
path: root/ldap
diff options
context:
space:
mode:
authorNathan Kinder <nkinder@redhat.com>2005-09-28 20:21:20 +0000
committerNathan Kinder <nkinder@redhat.com>2005-09-28 20:21:20 +0000
commit244e6b85eae95e2ede5dd769a33e0940c44a22c2 (patch)
treedfa9b8d11d707c25bcdeb5a8468df4d3c9b425fd /ldap
parentdfdab6e74bf66a89094abd447633b6e5655e2c46 (diff)
downloadds-244e6b85eae95e2ede5dd769a33e0940c44a22c2.tar.gz
ds-244e6b85eae95e2ede5dd769a33e0940c44a22c2.tar.xz
ds-244e6b85eae95e2ede5dd769a33e0940c44a22c2.zip
169388 - Fixed attribute comparision helper function that was causing certain changes to not get synched.
Diffstat (limited to 'ldap')
-rw-r--r--ldap/servers/plugins/replication/windows_protocol_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldap/servers/plugins/replication/windows_protocol_util.c b/ldap/servers/plugins/replication/windows_protocol_util.c
index 16bf89b8..6fe7a8a6 100644
--- a/ldap/servers/plugins/replication/windows_protocol_util.c
+++ b/ldap/servers/plugins/replication/windows_protocol_util.c
@@ -1532,7 +1532,7 @@ attr_compare_equal(Slapi_Attr *a, Slapi_Attr *b)
slapi_attr_first_value(a, &va);
slapi_attr_first_value(b, &vb);
- if (va->bv.bv_len == va->bv.bv_len)
+ if (va->bv.bv_len == vb->bv.bv_len)
{
if (0 != memcmp(va->bv.bv_val,vb->bv.bv_val,va->bv.bv_len))
{