X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=servers%2Fslapd%2Fattr.c;h=ab9c56511ed0052bc06f44e07aa350d29230f32a;hb=d6449b1d57964b189259f7388f03418fb09e3000;hp=462fead661a3b445db26e729b84f3b6e49f268c6;hpb=0e2af54a3ffdeebe3901370683be56fcc53023b0;p=openldap diff --git a/servers/slapd/attr.c b/servers/slapd/attr.c index 462fead661..ab9c56511e 100644 --- a/servers/slapd/attr.c +++ b/servers/slapd/attr.c @@ -23,13 +23,15 @@ #include "slap.h" #ifdef LDAP_DEBUG -static void at_index_print( void ) {}; +static void at_index_print( void ) +{ +} #endif void attr_free( Attribute *a ) { - bvarray_free( a->a_vals ); + ber_bvarray_free( a->a_vals ); free( a ); } @@ -74,6 +76,7 @@ Attribute *attr_dup( Attribute *a ) tmp->a_desc = a->a_desc; tmp->a_next = NULL; + tmp->a_flags = 0; return tmp; } @@ -109,13 +112,12 @@ int attr_merge( Entry *e, AttributeDescription *desc, - BVarray vals ) + BerVarray vals ) { Attribute **a; for ( a = &e->e_attrs; *a != NULL; a = &(*a)->a_next ) { - if ( ad_cmp( (*a)->a_desc, desc ) == 0 ) - { + if ( ad_cmp( (*a)->a_desc, desc ) == 0 ) { break; } } @@ -125,11 +127,37 @@ attr_merge( (*a)->a_desc = desc; (*a)->a_vals = NULL; (*a)->a_next = NULL; + (*a)->a_flags = 0; } return( value_add( &(*a)->a_vals, vals ) ); } +int +attr_merge_one( + Entry *e, + AttributeDescription *desc, + struct berval *val ) +{ + Attribute **a; + + for ( a = &e->e_attrs; *a != NULL; a = &(*a)->a_next ) { + if ( ad_cmp( (*a)->a_desc, desc ) == 0 ) { + break; + } + } + + if ( *a == NULL ) { + *a = (Attribute *) ch_malloc( sizeof(Attribute) ); + (*a)->a_desc = desc; + (*a)->a_vals = NULL; + (*a)->a_next = NULL; + (*a)->a_flags = 0; + } + + return( value_add_one( &(*a)->a_vals, val ) ); +} + /* * attrs_find - find attribute(s) by AttributeDescription * returns next attribute which is subtype of provided description. @@ -161,8 +189,7 @@ attr_find( ) { for ( ; a != NULL; a = a->a_next ) { - if ( ad_cmp( a->a_desc, desc ) == 0 ) - { + if ( ad_cmp( a->a_desc, desc ) == 0 ) { return( a ); } } @@ -186,8 +213,7 @@ attr_delete( Attribute **a; for ( a = attrs; *a != NULL; a = &(*a)->a_next ) { - if ( ad_cmp( (*a)->a_desc, desc ) == 0 ) - { + if ( ad_cmp( (*a)->a_desc, desc ) == 0 ) { Attribute *save = *a; *a = (*a)->a_next; attr_free( save );