int
at_schema_info( Entry *e )
{
- struct berval vals[2];
- AttributeType *at;
-
AttributeDescription *ad_attributeTypes = slap_schema.si_ad_attributeTypes;
-
- vals[1].bv_val = NULL;
+ AttributeType *at;
+ struct berval val;
+#ifdef SLAP_NVALUES
+ struct berval nval;
+#endif
LDAP_SLIST_FOREACH(at,&attr_list,sat_next) {
if( at->sat_flags & SLAP_AT_HIDE ) continue;
- if ( ldap_attributetype2bv( &at->sat_atype, vals ) == NULL ) {
+ if ( ldap_attributetype2bv( &at->sat_atype, &val ) == NULL ) {
return -1;
}
#ifdef SLAP_NVALUES
- if( attr_merge( e, ad_attributeTypes, vals, NULL /* FIXME */ ) )
+ nval.bv_val = at->sat_oid;
+ nval.bv_len = strlen(at->sat_oid);
+
+ if( attr_merge_one( e, ad_attributeTypes, &val, &nval ) )
#else
- if( attr_merge( e, ad_attributeTypes, vals ) )
+ if( attr_merge_one( e, ad_attributeTypes, &val ) )
#endif
{
return -1;
}
- ldap_memfree( vals[0].bv_val );
+ ldap_memfree( val.bv_val );
}
return 0;
}
cr_schema_info( Entry *e )
{
#ifdef SLAP_EXTENDED_SCHEMA
- struct berval vals[2];
- ContentRule *cr;
-
AttributeDescription *ad_ditContentRules
= slap_schema.si_ad_ditContentRules;
+ ContentRule *cr;
- vals[1].bv_val = NULL;
+ struct berval val;
+#ifdef SLAP_NVALUES
+ struct berval nval;
+#endif
LDAP_SLIST_FOREACH(cr, &cr_list, scr_next) {
- if ( ldap_contentrule2bv( &cr->scr_crule, vals ) == NULL ) {
+ if ( ldap_contentrule2bv( &cr->scr_crule, &val ) == NULL ) {
return -1;
}
#if 0
if( cr->scr_flags & SLAP_CR_HIDE ) continue;
#endif
-
#if 0
Debug( LDAP_DEBUG_TRACE, "Merging cr [%ld] %s\n",
- (long) vals[0].bv_len, vals[0].bv_val, 0 );
+ (long) val.bv_len, val.bv_val, 0 );
#endif
+
#ifdef SLAP_NVALUES
- if( attr_merge( e, ad_ditContentRules, vals, NULL ) )
+ nval.bv_val = cr->scr_oid;
+ nval.bv_len = strlen(cr->scr_oid);
+
+ if( attr_merge_one( e, ad_ditContentRules, &val, &nval ) )
#else
- if( attr_merge( e, ad_ditContentRules, vals ) )
+ if( attr_merge_one( e, ad_ditContentRules, &val ) )
#endif
{
return -1;
}
- ldap_memfree( vals[0].bv_val );
+ ldap_memfree( val.bv_val );
}
#endif
return 0;
int mr_schema_info( Entry *e )
{
- MatchingRule *mr;
-
AttributeDescription *ad_matchingRules = slap_schema.si_ad_matchingRules;
+ MatchingRule *mr;
+#ifdef SLAP_NVALUES
+ struct berval nval;
+#endif
LDAP_SLIST_FOREACH(mr, &mr_list, smr_next ) {
if ( mr->smr_usage & SLAP_MR_HIDE ) {
mr->smr_str.bv_len, mr->smr_str.bv_val, 0 );
#endif
#ifdef SLAP_NVALUES
- if( attr_merge_one( e, ad_matchingRules, &mr->smr_str, NULL /* FIXME */ ) )
+ nval.bv_val = mr->smr_oid;
+ nval.bv_len = strlen(mr->smr_oid);
+ if( attr_merge_one( e, ad_matchingRules, &mr->smr_str, &nval ) )
#else
if( attr_merge_one( e, ad_matchingRules, &mr->smr_str ) )
#endif
int mru_schema_info( Entry *e )
{
- MatchingRuleUse *mru;
-
AttributeDescription *ad_matchingRuleUse
= slap_schema.si_ad_matchingRuleUse;
+ MatchingRuleUse *mru;
+#ifdef SLAP_NVALUES
+ struct berval nval;
+#endif
LDAP_SLIST_FOREACH( mru, &mru_list, smru_next ) {
mru->smru_str.bv_len, mru->smru_str.bv_val, 0 );
#endif
#ifdef SLAP_NVALUES
- if( attr_merge_one( e, ad_matchingRuleUse, &mru->smru_str, NULL /* FIXME */ ) )
+ nval.bv_val = mru->smru_oid;
+ nval.bv_len = strlen(mru->smru_oid);
+ if( attr_merge_one( e, ad_matchingRuleUse, &mru->smru_str, &nval ) )
#else
if( attr_merge_one( e, ad_matchingRuleUse, &mru->smru_str ) )
#endif
int
oc_schema_info( Entry *e )
{
- struct berval vals[2];
- ObjectClass *oc;
-
AttributeDescription *ad_objectClasses = slap_schema.si_ad_objectClasses;
-
- vals[1].bv_val = NULL;
+ ObjectClass *oc;
+ struct berval val;
+#ifdef SLAP_NVALUES
+ struct berval nval;
+#endif
LDAP_SLIST_FOREACH( oc, &oc_list, soc_next ) {
if( oc->soc_flags & SLAP_OC_HIDE ) continue;
- if ( ldap_objectclass2bv( &oc->soc_oclass, vals ) == NULL ) {
+ if ( ldap_objectclass2bv( &oc->soc_oclass, &val ) == NULL ) {
return -1;
}
#if 0
Debug( LDAP_DEBUG_TRACE, "Merging oc [%ld] %s\n",
- (long) vals[0].bv_len, vals[0].bv_val, 0 );
+ (long) val.bv_len, val.bv_val, 0 );
#endif
#ifdef SLAP_NVALUES
- if( attr_merge( e, ad_objectClasses, vals, NULL /* FIXME */ ) )
+ nval.bv_val = oc->soc_oid;
+ nval.bv_len = strlen(oc->soc_oid);
+
+ if( attr_merge_one( e, ad_objectClasses, &val, &nval ) )
#else
- if( attr_merge( e, ad_objectClasses, vals ) )
+ if( attr_merge_one( e, ad_objectClasses, &val ) )
#endif
{
return -1;
}
- ldap_memfree( vals[0].bv_val );
+ ldap_memfree( val.bv_val );
}
return 0;
}
int
syn_schema_info( Entry *e )
{
- struct berval vals[2];
- Syntax *syn;
-
AttributeDescription *ad_ldapSyntaxes = slap_schema.si_ad_ldapSyntaxes;
-
- vals[1].bv_val = NULL;
+ Syntax *syn;
+ struct berval val;
+#ifdef SLAP_NVALUES
+ struct berval nval;
+#endif
LDAP_SLIST_FOREACH(syn, &syn_list, ssyn_next ) {
if ( ! syn->ssyn_validate ) {
continue;
}
- if ( ldap_syntax2bv( &syn->ssyn_syn, vals ) == NULL ) {
+ if ( ldap_syntax2bv( &syn->ssyn_syn, &val ) == NULL ) {
return -1;
}
#if 0
#ifdef NEW_LOGGING
LDAP_LOG( config, ENTRY,
"syn_schema_info: Merging syn [%ld] %s\n",
- (long)vals[0].bv_len, vals[0].bv_val, 0 );
+ (long)val.bv_len, val.bv_val, 0 );
#else
Debug( LDAP_DEBUG_TRACE, "Merging syn [%ld] %s\n",
- (long) vals[0].bv_len, vals[0].bv_val, 0 );
+ (long) val.bv_len, val.bv_val, 0 );
#endif
-
#endif
+
#ifdef SLAP_NVALUES
- if( attr_merge( e, ad_ldapSyntaxes, vals, NULL /* FIXME */ ) )
+ nval.bv_val = syn->ssyn_oid;
+ nval.bv_len = strlen(syn->ssyn_oid);
+
+ if( attr_merge_one( e, ad_ldapSyntaxes, &val, &nval ) )
#else
- if( attr_merge( e, ad_ldapSyntaxes, vals ) )
+ if( attr_merge_one( e, ad_ldapSyntaxes, &val ) )
#endif
{
return -1;
}
- ldap_memfree( vals[0].bv_val );
+ ldap_memfree( val.bv_val );
}
return 0;
}