From 1f3eea3157945cea1166139574e39e9192abc2f5 Mon Sep 17 00:00:00 2001 From: Ludwig Krispenz Date: Tue, 10 Sep 2013 10:34:04 +0200 Subject: [PATCH] Ticket 47502 - updates to ruv entry are written to retro changelog Bug Description: if replication and retro changelog are enabled the changes to the tombstone ruv are written to the retro changelog Fix Description: in replica_write_ruv this explicitely prevented by setting the OP_FLAG_TOMBSTONE_ENTRY - do this also in replica_replace_ruv_tombstone https://fedorahosted.org/389/ticket/47502 Reviewed by: ? --- ldap/servers/plugins/replication/repl5_replica.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldap/servers/plugins/replication/repl5_replica.c b/ldap/servers/plugins/replication/repl5_replica.c index d77e7f8..b07a9f9 100644 --- a/ldap/servers/plugins/replication/repl5_replica.c +++ b/ldap/servers/plugins/replication/repl5_replica.c @@ -3532,7 +3532,7 @@ replica_replace_ruv_tombstone(Replica *r) NULL, /* controls */ RUV_STORAGE_ENTRY_UNIQUEID, repl_get_plugin_identity (PLUGIN_MULTIMASTER_REPLICATION), - OP_FLAG_REPLICATED | OP_FLAG_REPL_FIXUP | OP_FLAG_REPL_RUV); + OP_FLAG_REPLICATED | OP_FLAG_REPL_FIXUP | OP_FLAG_REPL_RUV | OP_FLAG_TOMBSTONE_ENTRY); slapi_modify_internal_pb (pb); -- 1.7.11.7