char *realval, *tmpval;
char buf[BUFSIZ];
- char *at_on;
+ char *at_cn;
ldbm_datum_init( key );
}
attr_normalize( type );
- at_on = at_canonical_name(type);
+ at_cn = at_canonical_name(type);
- if ( (db = bdb2i_cache_open( be, at_on, BDB2_SUFFIX, LDBM_WRCREAT ))
+ if ( (db = bdb2i_cache_open( be, at_cn, BDB2_SUFFIX, LDBM_WRCREAT ))
== NULL ) {
Debug( LDAP_DEBUG_ANY,
- "<= bdb2i_index_read NULL (could not open %s%s)\n", at_on,
+ "<= bdb2i_index_read NULL (could not open %s%s)\n", at_cn,
BDB2_SUFFIX, 0 );
return( NULL );
}
char *bigbuf;
struct dbcache *db;
- char *at_on;
+ char *at_cn;
Debug( LDAP_DEBUG_TRACE, "=> bdb2i_index_add_values( \"%s\", %ld )\n", type,
id, 0 );
if ( indexmask == 0 ) {
return( 0 );
}
- at_on = at_canonical_name(type);
+ at_cn = at_canonical_name(type);
- if ( (db = bdb2i_cache_open( be, at_on, BDB2_SUFFIX, LDBM_WRCREAT ))
+ if ( (db = bdb2i_cache_open( be, at_cn, BDB2_SUFFIX, LDBM_WRCREAT ))
== NULL ) {
Debug( LDAP_DEBUG_ANY,
"<= bdb2i_index_add_values -1 (could not open/create %s%s)\n",
- at_on, BDB2_SUFFIX, 0 );
+ at_cn, BDB2_SUFFIX, 0 );
return( -1 );
}
* presence index entry
*/
if ( indexmask & INDEX_PRESENCE ) {
- add_value( be, db, at_on, INDEX_PRESENCE, "*", id );
+ add_value( be, db, at_cn, INDEX_PRESENCE, "*", id );
}
Debug( LDAP_DEBUG_TRACE, "*** bdb2i_index_add_values syntax 0x%x syntax bin 0x%x\n",
* equality index entry
*/
if ( indexmask & INDEX_EQUALITY ) {
- add_value( be, db, at_on, INDEX_EQUALITY, val, id );
+ add_value( be, db, at_cn, INDEX_EQUALITY, val, id );
}
/*
for ( w = first_word( val ); w != NULL;
w = next_word( w ) ) {
if ( (code = phonetic( w )) != NULL ) {
- add_value( be, db, at_on, INDEX_APPROX,
+ add_value( be, db, at_cn, INDEX_APPROX,
code, id );
free( code );
}
}
buf[SUBLEN] = '\0';
- add_value( be, db, at_on, INDEX_SUB, buf, id );
+ add_value( be, db, at_cn, INDEX_SUB, buf, id );
p = val + len - SUBLEN + 1;
for ( j = 0; j < SUBLEN - 1; j++ ) {
buf[SUBLEN - 1] = '$';
buf[SUBLEN] = '\0';
- add_value( be, db, at_on, INDEX_SUB, buf, id );
+ add_value( be, db, at_cn, INDEX_SUB, buf, id );
}
/* any */
}
buf[SUBLEN] = '\0';
- add_value( be, db, at_on, INDEX_SUB, buf, id );
+ add_value( be, db, at_cn, INDEX_SUB, buf, id );
}
}