summaryrefslogtreecommitdiff
path: root/source3/libads/disp_sec.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-10-14 02:26:18 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-10-14 02:26:18 +0200
commit1f3e4f39c5219b8ca3564e0c2eb685d9e7fdb13e (patch)
treedc2074d60a5f0cf1eca3236e02a95782613b1533 /source3/libads/disp_sec.c
parent7e5bbe806958ea8176e4c8494e3b3f79570635da (diff)
downloadsamba-1f3e4f39c5219b8ca3564e0c2eb685d9e7fdb13e.tar.gz
samba-1f3e4f39c5219b8ca3564e0c2eb685d9e7fdb13e.tar.bz2
samba-1f3e4f39c5219b8ca3564e0c2eb685d9e7fdb13e.zip
Use GUID_string rather than smb_uuid_string().
Diffstat (limited to 'source3/libads/disp_sec.c')
-rw-r--r--source3/libads/disp_sec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/libads/disp_sec.c b/source3/libads/disp_sec.c
index f4c68638df..a5e04a4a6c 100644
--- a/source3/libads/disp_sec.c
+++ b/source3/libads/disp_sec.c
@@ -114,15 +114,15 @@ static void ads_disp_sec_ace_object(ADS_STRUCT *ads,
{
if (object->flags & SEC_ACE_OBJECT_PRESENT) {
printf("Object type: SEC_ACE_OBJECT_PRESENT\n");
- printf("Object GUID: %s (%s)\n", smb_uuid_string(mem_ctx,
- object->type.type),
+ printf("Object GUID: %s (%s)\n", GUID_string(mem_ctx,
+ &object->type.type),
ads_interprete_guid_from_object(ads, mem_ctx,
&object->type.type));
}
if (object->flags & SEC_ACE_OBJECT_INHERITED_PRESENT) {
printf("Object type: SEC_ACE_OBJECT_INHERITED_PRESENT\n");
- printf("Object GUID: %s (%s)\n", smb_uuid_string(mem_ctx,
- object->inherited_type.inherited_type),
+ printf("Object GUID: %s (%s)\n", GUID_string(mem_ctx,
+ &object->inherited_type.inherited_type),
ads_interprete_guid_from_object(ads, mem_ctx,
&object->inherited_type.inherited_type));
}