]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Need to exit 1 if ldapsearch for deleted rdn is successful.
authorKurt Zeilenga <kurt@openldap.org>
Wed, 25 Aug 1999 23:22:13 +0000 (23:22 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 25 Aug 1999 23:22:13 +0000 (23:22 +0000)
CHANGES
tests/scripts/test005-modrdn

diff --git a/CHANGES b/CHANGES
index ee6091fe1685446c41fa74d3f77cc95407a7bc0b..dcbcb482827da18d86a5a083782585a6dc808c66 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,10 +2,11 @@ OpenLDAP Change Log
 
 Changes included in OpenLDAP 1.2 Release Engineering
        CVS Tag: OPENLDAP_REL_ENG_1_2
-       Fixed slapd memory leaks (ITS#249 ITS#250)
        Added ldapsearch -W password prompting
        Added dcObject, uidObject, referral object classes to slapd.oc.conf
        Added ref attribute type to slapd.at.conf
+       Fixed slapd memory leaks (ITS#249 ITS#250)
+       Fixed test005-modrdn to properly report failure in delete rdn case 
        Build environment
                Disable config.cache to ensure consistent detection
        Documentation
index 8a31e49e0251b23ece326659eb09c991d1435d6a..2b8b1a154954101bba3f5846b1da816b5837e3e8 100755 (executable)
@@ -144,7 +144,7 @@ RC=$?
 if test $RC = 0 ; then
        echo "failure: ldapsearch found attribute that was to be removed!"
        kill -HUP $PID
-       exit $RC
+       exit 1
 fi
 
 echo "Using ldapsearch to retrieve all the entries..."