diff options
author | Günther Deschner <gd@samba.org> | 2005-12-08 16:34:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:46 -0500 |
commit | 5ffc3b18ef31bb96d750b1bceab4fa7f00eb2852 (patch) | |
tree | c4b922c9c4b1d0929890664b98d7f32a8672bc2c | |
parent | 09c1b2a20ef409e4244a62abf658dd680fabc814 (diff) | |
download | samba-5ffc3b18ef31bb96d750b1bceab4fa7f00eb2852.tar.gz samba-5ffc3b18ef31bb96d750b1bceab4fa7f00eb2852.tar.bz2 samba-5ffc3b18ef31bb96d750b1bceab4fa7f00eb2852.zip |
r12131: Fix it really, this time :)
Guenther
(This used to be commit 4a506dbc3c63b965044aa16374f46531375cc920)
-rw-r--r-- | source3/rpcclient/cmd_lsarpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpcclient/cmd_lsarpc.c b/source3/rpcclient/cmd_lsarpc.c index 4f4687ebfd..5adaf46981 100644 --- a/source3/rpcclient/cmd_lsarpc.c +++ b/source3/rpcclient/cmd_lsarpc.c @@ -130,8 +130,8 @@ static NTSTATUS cmd_lsa_query_info_policy(struct rpc_pipe_client *cli, printf("forest name is %s\n", forest_name); if (info_class == 12) { - printf("domain GUID is %s\n"); - smb_uuid_string_static(*dom_guid); + printf("domain GUID is %s\n", + smb_uuid_string_static(*dom_guid)); } rpccli_lsa_close(cli, mem_ctx, &pol); |