summaryrefslogtreecommitdiff
path: root/source/rpcclient/cmd_lsarpc.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-04-13 14:39:48 +0000
committerGerald Carter <jerry@samba.org>2004-04-13 14:39:48 +0000
commit36619f2aae8fb49d35814522eed05d3b7fe681c0 (patch)
treee2cfe8d3908a6587a020fa5d177b877c44134a71 /source/rpcclient/cmd_lsarpc.c
parentd77d15593181a7dd115faec631339a3fd74a3093 (diff)
downloadsamba-36619f2aae8fb49d35814522eed05d3b7fe681c0.tar.gz
r196: merging struct uuid from trunk
Diffstat (limited to 'source/rpcclient/cmd_lsarpc.c')
-rw-r--r--source/rpcclient/cmd_lsarpc.c4
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;