From 4905d39f4f277418d3795303d4df2dad69015211 Mon Sep 17 00:00:00 2001 From: Rafal Szczesniak Date: Mon, 5 May 2003 08:43:43 +0000 Subject: Turn off using lsa_qos. Rafal (This used to be commit d03124fbf182f194e48c4ef9ae6aedc4db4f13b0) --- source3/utils/net_rpc.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'source3') diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index e3e79b0e6c..3f5a339948 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -1785,7 +1785,7 @@ static int rpc_trustdom_establish(int argc, const char **argv) return -1; } - nt_status = cli_lsa_open_policy2(cli, mem_ctx, True, SEC_RIGHTS_QUERY_VALUE, + nt_status = cli_lsa_open_policy2(cli, mem_ctx, False, SEC_RIGHTS_QUERY_VALUE, &connect_hnd); if (NT_STATUS_IS_ERR(nt_status)) { DEBUG(0, ("Couldn't open policy handle. Error was %s\n", @@ -1804,9 +1804,6 @@ static int rpc_trustdom_establish(int argc, const char **argv) return -1; } - - - /* There should be actually query info level 3 (following nt serv behaviour), but I still don't know if it's _really_ necessary */ @@ -1955,7 +1952,7 @@ static int rpc_trustdom_list(int argc, const char **argv) return -1; }; - nt_status = cli_lsa_open_policy2(cli, mem_ctx, True, SEC_RIGHTS_QUERY_VALUE, + nt_status = cli_lsa_open_policy2(cli, mem_ctx, False, SEC_RIGHTS_QUERY_VALUE, &connect_hnd); if (NT_STATUS_IS_ERR(nt_status)) { DEBUG(0, ("Couldn't open policy handle. Error was %s\n", -- cgit