mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
Need to exit 1 if ldapsearch for deleted rdn is successful.
This commit is contained in:
parent
ce05f1cd76
commit
916c5367d0
2 changed files with 3 additions and 2 deletions
3
CHANGES
3
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
|
||||
|
|
|
|||
|
|
@ -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..."
|
||||
|
|
|
|||
Loading…
Reference in a new issue