]> git.sur5r.net Git - openldap/commitdiff
Let bdb_attr_index_unparser() return int (0) instead of void; the return
authorHallvard Furuseth <hallvard@openldap.org>
Mon, 4 Jul 2005 05:21:39 +0000 (05:21 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Mon, 4 Jul 2005 05:21:39 +0000 (05:21 +0000)
value of an AVL_APPLY function is significant.

servers/slapd/back-bdb/attr.c

index 15b1e31f6a83ef14a7571b71bf39da358cc0cc1f..f058c1f59672ddcda65b19638977d5d8ee64b923 100644 (file)
@@ -271,7 +271,7 @@ bdb_attr_index_config(
        return LDAP_SUCCESS;
 }
 
-static void
+static int
 bdb_attr_index_unparser( void *v1, void *v2 )
 {
        AttrInfo *ai = v1;
@@ -289,6 +289,7 @@ bdb_attr_index_unparser( void *v1, void *v2 )
                bv.bv_val = ptr;
                ber_bvarray_add( bva, &bv );
        }
+       return 0;
 }
 
 static AttributeDescription addef = { NULL, NULL, BER_BVC("default") };