More fixes for autosubtype index generation

This commit is contained in:
Howard Chu 2002-01-14 20:49:06 +00:00
parent f4cfb13f2c
commit fde56a188c
2 changed files with 6 additions and 2 deletions

View File

@ -299,7 +299,6 @@ static int index_at_values(
*dbnamep = type->sat_cname.bv_val;
} else if ( tmpmask & SLAP_INDEX_AUTO_SUBTYPES ) {
mask = tmpmask;
*maskp = mask;
}
if( mask ) {
@ -309,6 +308,9 @@ static int index_at_values(
mask );
if( rc ) return rc;
if( mask & SLAP_INDEX_AUTO_SUBTYPES ) {
*maskp = mask;
}
}
if( lang->bv_len ) {

View File

@ -265,7 +265,6 @@ static int index_at_values(
*dbnamep = type->sat_cname.bv_val;
} else if ( tmpmask & SLAP_INDEX_AUTO_SUBTYPES ) {
mask = tmpmask;
*maskp = mask;
}
if( mask ) {
@ -273,6 +272,9 @@ static int index_at_values(
&type->sat_cname,
vals, id, op,
mask );
if ( mask & SLAP_INDEX_AUTO_SUBTYPES ) {
*maskp = mask;
}
}
if( lang->bv_len ) {