diff options
author | Gerald Carter <jerry@samba.org> | 2004-04-13 14:39:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:13 -0500 |
commit | 911a28361b9d8dd50597627f245ebfb57c6294fb (patch) | |
tree | 52ba5e4fde5b3d5590cc1d296e5d233b6311fd3b /source/rpcclient | |
parent | 1501d58b8e23d0c9ae51514773d0429886fa9d58 (diff) | |
download | samba-911a28361b9d8dd50597627f245ebfb57c6294fb.tar.gz samba-911a28361b9d8dd50597627f245ebfb57c6294fb.tar.xz samba-911a28361b9d8dd50597627f245ebfb57c6294fb.zip |
r196: merging struct uuid from trunk
Diffstat (limited to 'source/rpcclient')
-rw-r--r-- | source/rpcclient/cmd_lsarpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/rpcclient/cmd_lsarpc.c b/source/rpcclient/cmd_lsarpc.c index 1b1ea31c96f..d9afde465da 100644 --- a/source/rpcclient/cmd_lsarpc.c +++ b/source/rpcclient/cmd_lsarpc.c @@ -69,7 +69,7 @@ static NTSTATUS cmd_lsa_query_info_policy(struct cli_state *cli, POLICY_HND pol; NTSTATUS result = NT_STATUS_UNSUCCESSFUL; DOM_SID *dom_sid; - GUID *dom_guid; + struct uuid *dom_guid; fstring sid_str; char *domain_name = NULL; char *dns_name = NULL; @@ -128,7 +128,7 @@ static NTSTATUS cmd_lsa_query_info_policy(struct cli_state *cli, if (info_class == 12) { printf("domain GUID is "); - print_guid(&dom_guid); + smb_uuid_string_static(*dom_guid); } done: return result; |