mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 05:30:07 -05:00
Fix prev commit
This commit is contained in:
parent
1fa702e968
commit
3f5e705996
1 changed files with 2 additions and 2 deletions
|
|
@ -2781,11 +2781,11 @@ presentlist_delete(
|
|||
struct berval *val )
|
||||
{
|
||||
#ifdef HASHUUID
|
||||
Avlnode **a2 = (Avlnode **)av;
|
||||
Avlnode **a2 = *(Avlnode ***)av;
|
||||
unsigned short s;
|
||||
|
||||
memcpy(&s, val->bv_val, 2);
|
||||
return avl_delete( a2[s], val->bv_val+2, syncuuid_cmp );
|
||||
avl_delete( &a2[s], val->bv_val+2, syncuuid_cmp );
|
||||
#else
|
||||
avl_delete( av, val->bv_val, syncuuid_cmp );
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue