mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
fix root entry deletion
This commit is contained in:
parent
40cac2e37a
commit
dbb88f203b
@ -217,16 +217,19 @@ backsql_delete( Operation *op, SlapReply *rs )
|
||||
/*
|
||||
* Get the parent
|
||||
*/
|
||||
if ( !be_issuffix( op->o_bd, &op->o_req_ndn ) ) {
|
||||
dnParent( &op->o_req_ndn, &pdn );
|
||||
bsi.bsi_e = &p;
|
||||
e_id = bsi.bsi_base_id;
|
||||
rs->sr_err = backsql_init_search( &bsi, &pdn,
|
||||
LDAP_SCOPE_BASE,
|
||||
(time_t)(-1), NULL, dbh, op, rs, slap_anlist_no_attrs,
|
||||
(time_t)(-1), NULL, dbh, op, rs,
|
||||
slap_anlist_no_attrs,
|
||||
BACKSQL_ISF_GET_ENTRY );
|
||||
if ( rs->sr_err != LDAP_SUCCESS ) {
|
||||
Debug( LDAP_DEBUG_TRACE, "backsql_delete(): "
|
||||
"could not retrieve deleteDN ID - no such entry\n",
|
||||
"could not retrieve deleteDN ID "
|
||||
"- no such entry\n",
|
||||
0, 0, 0 );
|
||||
e = &p;
|
||||
goto done;
|
||||
@ -246,6 +249,7 @@ backsql_delete( Operation *op, SlapReply *rs )
|
||||
goto done;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/* avl_apply ... */
|
||||
rs->sr_err = backsql_delete_all_attrs( op, rs, dbh, &e_id, oc );
|
||||
|
Loading…
Reference in New Issue
Block a user