Blame SOURCES/0001-Ticket-48755-moving-an-entry-could-make-the-online-i.patch

7c7f29
From e23985aa9123b5dda2c7fe6d5205356d3fc4f5b7 Mon Sep 17 00:00:00 2001
7c7f29
From: Noriko Hosoi <nhosoi@redhat.com>
7c7f29
Date: Thu, 7 Jul 2016 16:38:13 -0700
7c7f29
Subject: [PATCH 1/3] Ticket #48755 - moving an entry could make the online
7c7f29
 init fail
7c7f29
7c7f29
Description: The upgrade script template 91reindex.pl.in had a syntax error.
7c7f29
See also Bug 1353592 - Setup-ds.pl --update fails
7c7f29
7c7f29
https://fedorahosted.org/389/ticket/48755
7c7f29
7c7f29
Note: one character fix.
7c7f29
(cherry picked from commit aa64641d1974bb52fc4d02808362e76dd86d9cd0)
7c7f29
---
7c7f29
 ldap/admin/src/scripts/91reindex.pl.in | 2 +-
7c7f29
 1 file changed, 1 insertion(+), 1 deletion(-)
7c7f29
7c7f29
diff --git a/ldap/admin/src/scripts/91reindex.pl.in b/ldap/admin/src/scripts/91reindex.pl.in
7c7f29
index c861f64..99b08e3 100644
7c7f29
--- a/ldap/admin/src/scripts/91reindex.pl.in
7c7f29
+++ b/ldap/admin/src/scripts/91reindex.pl.in
7c7f29
@@ -12,7 +12,7 @@ sub runinst {
7c7f29
     # rdn-format value.  See $rdn_format set below.
7c7f29
     # If equal to or greater than this value, no need to reindex.
7c7f29
     # If it needs to be unconditionally reindexed, set 0.
7c7f29
-    my @rdnconditions = (4)
7c7f29
+    my @rdnconditions = (4);
7c7f29
 
7c7f29
     my $config = $conn->search("cn=config", "base", "(objectclass=*)");
7c7f29
     if (!$config) {
7c7f29
-- 
7c7f29
2.4.11
7c7f29