From: Howard Chu Date: Wed, 19 Jan 2005 06:43:33 +0000 (+0000) Subject: Cleanup prev commit X-Git-Tag: OPENLDAP_REL_ENG_2_3_BP~341 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3f4243def94e6ce83db63b6baedf7f541dad27dd;p=openldap Cleanup prev commit --- diff --git a/servers/slapd/back-bdb/idl.c b/servers/slapd/back-bdb/idl.c index 0022e401f6..b97368677e 100644 --- a/servers/slapd/back-bdb/idl.c +++ b/servers/slapd/back-bdb/idl.c @@ -726,12 +726,12 @@ bdb_idl_insert_key( /* Delete all the records between lo and hi */ for ( i=2; ic_get( cursor, &key2, &data, DB_NEXT_DUP | DB_RMW ); - if ( rc != 0 && rc != DB_NOTFOUND ) { + if ( rc != 0 ) { err = "c_get next_dup"; goto fail; } rc = cursor->c_del( cursor, 0 ); - if ( rc != 0 && rc != DB_NOTFOUND ) { + if ( rc != 0 ) { err = "c_del range"; goto fail; }