diff options
author | Nathan Kinder <nkinder@redhat.com> | 2005-04-15 15:10:07 +0000 |
---|---|---|
committer | Nathan Kinder <nkinder@redhat.com> | 2005-04-15 15:10:07 +0000 |
commit | bdbbeaed73581f7eaa1696589a84c1a456feddb7 (patch) | |
tree | 73422ff19d5ea43a223147e9998e092dd0c9fffc /ldap/servers/plugins/replication | |
parent | 1b5e0cf7d65ffdf10676d118c835ae50ad047a42 (diff) | |
download | ds-bdbbeaed73581f7eaa1696589a84c1a456feddb7.tar.gz ds-bdbbeaed73581f7eaa1696589a84c1a456feddb7.tar.xz ds-bdbbeaed73581f7eaa1696589a84c1a456feddb7.zip |
154948 - Fixed fractional repl crash
Diffstat (limited to 'ldap/servers/plugins/replication')
-rw-r--r-- | ldap/servers/plugins/replication/repl5_agmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldap/servers/plugins/replication/repl5_agmt.c b/ldap/servers/plugins/replication/repl5_agmt.c index afc0b15e..4a660f19 100644 --- a/ldap/servers/plugins/replication/repl5_agmt.c +++ b/ldap/servers/plugins/replication/repl5_agmt.c @@ -1465,7 +1465,7 @@ agmt_notify_change(Repl_Agmt *agmt, Slapi_PBlock *pb) for (j = 0; !affects_fractional_attribute && NULL != mods[j]; j++) { if (slapi_attr_types_equivalent(agmt->frac_attrs[i], - mods[i]->mod_type)) + mods[j]->mod_type)) { affects_fractional_attribute = 1; } |