From 24bec17a925c99fe5a655f983e53fc72a34c69ac Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: Mon, 23 Sep 2013 12:21:15 -0400 Subject: [PATCH] Ticket 47509 - Cleanallruv jenkins error Fixed invalid array element that was out of bounds. https://fedorahosted.org/389/ticket/47509 --- .../plugins/replication/repl5_replica_config.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ldap/servers/plugins/replication/repl5_replica_config.c b/ldap/servers/plugins/replication/repl5_replica_config.c index f0c9e14..a4d9e16 100644 --- a/ldap/servers/plugins/replication/repl5_replica_config.c +++ b/ldap/servers/plugins/replication/repl5_replica_config.c @@ -2527,7 +2527,7 @@ delete_cleaned_rid_config(cleanruv_data *clean_data) /* * Now delete the attribute */ - vals[5] = NULL; + vals[4] = NULL; mod.mod_op = LDAP_MOD_DELETE|LDAP_MOD_BVALUES; mod.mod_type = (char *)type_replicaCleanRUV; mod.mod_bvalues = vals; -- 1.7.1