summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Kinder <nkinder@redhat.com>2005-09-28 20:27:53 +0000
committerNathan Kinder <nkinder@redhat.com>2005-09-28 20:27:53 +0000
commit547be1b93b5b8805b32b53eb6da31c3c4953506c (patch)
tree79788acf541e79552b4245b0a7335c4e80db4b1d
parente25eab948f2d1706a0996da388e6e16c74efc8e3 (diff)
downloadds-547be1b93b5b8805b32b53eb6da31c3c4953506c.tar.gz
ds-547be1b93b5b8805b32b53eb6da31c3c4953506c.tar.xz
ds-547be1b93b5b8805b32b53eb6da31c3c4953506c.zip
169388 - Fixed attribute comparision helper function that was causing certain changes to not get synched.
-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))
{