Skip to content
Snippets Groups Projects
Commit d3d73a0b authored by Howard Chu's avatar Howard Chu
Browse files

Delete unused slap_build_syncUUID_set()

parent 4ae3efbd
Branches
Tags
No related merge requests found
......@@ -245,27 +245,3 @@ slap_dup_sync_cookie(
return new;
}
int
slap_build_syncUUID_set(
Operation *op,
BerVarray *set,
Entry *e
)
{
int ret;
Attribute* a;
struct berval entryuuid_bv = BER_BVNULL;
for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
AttributeDescription *desc = a->a_desc;
if ( desc == slap_schema.si_ad_entryUUID ) {
ber_dupbv_x( &entryuuid_bv, &a->a_nvals[0], op->o_tmpmemctx );
break;
}
}
ret = ber_bvarray_add_x( set, &entryuuid_bv, op->o_tmpmemctx );
return ret;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment