Monday, March 2, 2015

[389-commits] Branch '389-ds-base-1.3.3' - ldap/servers

ldap/servers/plugins/replication/repl5_replica.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8f6871baeb80f2d7f2fe7faba76c10104a0d6305
Author: Ludwig Krispenz <lkrispen@redhat.com>
Date: Mon Dec 1 18:31:16 2014 +0100

Ticket #48021 - nsDS5ReplicaBindDNGroup checkinterval not working properly

Fix description: use correctly group_replace if groups are checked for updates

Reviewed by nhosoi@redhat.com.

https://fedorahosted.org/389/ticket/48021
(cherry picked from commit 5c6329ef0e154e84bd95cbe9fdc81bbca94d5165)

diff --git a/ldap/servers/plugins/replication/repl5_replica.c b/ldap/servers/plugins/replication/repl5_replica.c
index c184178..7661a04 100644
--- a/ldap/servers/plugins/replication/repl5_replica.c
+++ b/ldap/servers/plugins/replication/repl5_replica.c
@@ -990,7 +990,7 @@ replica_is_updatedn (Replica *r, const Slapi_DN *sdn)
if (r->updatedn_group_check_interval > -1) {
time_t now = time(NULL);
if (now - r->updatedn_group_last_check > r->updatedn_group_check_interval) {
- replica_updatedn_list_replace( r->groupdn_list, r->updatedn_groups);
+ replica_updatedn_list_group_replace( r->groupdn_list, r->updatedn_groups);
r->updatedn_group_last_check = now;
}
}


--
389 commits mailing list
389-commits@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-commits

No comments:

Post a Comment