]> git.sur5r.net Git - openldap/commitdiff
Use avl_find2, not avl_find
authorHoward Chu <hyc@openldap.org>
Sat, 20 Nov 2004 00:55:58 +0000 (00:55 +0000)
committerHoward Chu <hyc@openldap.org>
Sat, 20 Nov 2004 00:55:58 +0000 (00:55 +0000)
servers/slapd/overlays/seqmod.c

index 499e8fdb7a1cad58a7ab19103f077143d8a7abaa..3730d176348773873167e5814973fcac3d88cace 100644 (file)
@@ -59,7 +59,7 @@ seqmod_op_cleanup( Operation *op, SlapReply *rs )
 
        /* This op is done, remove it */
        ldap_pvt_thread_mutex_lock( &sm->sm_mutex );
-       av = avl_find( sm->sm_mods, mt, sm_avl_cmp );
+       av = avl_find2( sm->sm_mods, mt, sm_avl_cmp );
        assert(av);
 
        mt = av->avl_data;
@@ -98,7 +98,7 @@ seqmod_op_mod( Operation *op, SlapReply *rs )
         * near-simultaneous mods of the same entry
         */
        ldap_pvt_thread_mutex_lock( &sm->sm_mutex );
-       av = avl_find( sm->sm_mods, mt, sm_avl_cmp );
+       av = avl_find2( sm->sm_mods, mt, sm_avl_cmp );
        if ( av ) {
                modtarget *mtp = av->avl_data;
                mtp->mt_tail->mt_next = mt;