1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-29 16:23:52 +03:00

r12512: Use GUID structs in API functions everywhere rather then converting back and

forth between GUID structs and strings in several places.
This commit is contained in:
Jelmer Vernooij
2005-12-27 16:22:35 +00:00
committed by Gerald (Jerry) Carter
parent 2188168209
commit 3564e2f967
18 changed files with 92 additions and 98 deletions

View File

@@ -77,7 +77,7 @@ static uint32_t build_ep_list(TALLOC_CTX *mem_ctx,
(*eps)[total].name = iface->iface.name;
description = d->ep_description;
GUID_from_string(iface->iface.uuid, &description->object);
description->object = iface->iface.uuid;
description->object_version = iface->iface.if_version;
status = dcerpc_binding_build_tower(mem_ctx, description, &(*eps)[total].ep);