From: Pierangelo Masarati Date: Fri, 16 Dec 2005 00:04:51 +0000 (+0000) Subject: __should__ fix ITS#4262; please review X-Git-Tag: OPENLDAP_REL_ENG_2_4_BP~580 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=53d41587adf505c0421b5bf47516ebd0e66818c7;p=openldap __should__ fix ITS#4262; please review --- diff --git a/servers/slapd/back-bdb/config.c b/servers/slapd/back-bdb/config.c index 309346bf75..d5ffaa991d 100644 --- a/servers/slapd/back-bdb/config.c +++ b/servers/slapd/back-bdb/config.c @@ -466,7 +466,14 @@ bdb_cf_gen(ConfigArgs *c) break; case BDB_INDEX: if ( c->valx == -1 ) { + int i; + /* delete all (FIXME) */ + for ( i = 0; i < bdb->bi_nattrs; i++ ) { + bdb->bi_attrs[i]->ai_indexmask |= BDB_INDEX_DELETING; + } + bdb->bi_flags |= BDB_DEL_INDEX; + c->cleanup = bdb_cf_cleanup; } else { struct berval bv, def = BER_BVC("default");