diff options
author | Gerald Carter <jerry@samba.org> | 2006-09-11 20:07:35 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:51:21 -0500 |
commit | e397e2f22a1634fe79e7a9388702310134d2bc02 (patch) | |
tree | ec1ed00f73d5b1dd91fa64657dfce7ec24487060 /source3 | |
parent | 0a42e7125219cc032a7da331357acc229f2178ce (diff) | |
download | samba-e397e2f22a1634fe79e7a9388702310134d2bc02.tar.gz samba-e397e2f22a1634fe79e7a9388702310134d2bc02.tar.bz2 samba-e397e2f22a1634fe79e7a9388702310134d2bc02.zip |
r18397: Change rpccli_lsa_close() as a wrapper for the autogenerated
rpccli_lsa_Close().
(This used to be commit 365c75603d9130f46dd40ab46e14f3c91c687c65)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_client/cli_lsarpc.c | 33 |
1 files changed, 8 insertions, 25 deletions
diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c index 15a1a93721..8597bcb3a8 100644 --- a/source3/rpc_client/cli_lsarpc.c +++ b/source3/rpc_client/cli_lsarpc.c @@ -138,35 +138,18 @@ NTSTATUS rpccli_lsa_open_policy2(struct rpc_pipe_client *cli, NTSTATUS rpccli_lsa_close(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, POLICY_HND *pol) { - prs_struct qbuf, rbuf; - LSA_Q_CLOSE q; - LSA_R_CLOSE r; - NTSTATUS result; - - ZERO_STRUCT(q); - ZERO_STRUCT(r); - - init_lsa_q_close(&q, pol); - - CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_CLOSE, - q, r, - qbuf, rbuf, - lsa_io_q_close, - lsa_io_r_close, - NT_STATUS_UNSUCCESSFUL ); - - /* Return output parameters */ - - result = r.status; + struct policy_handle policy; + + if ( !pol ) + return NT_STATUS_NO_MEMORY; + + memcpy( &policy, pol, sizeof(policy) ); - if (NT_STATUS_IS_OK(result)) { #ifdef __INSURE__ - SAFE_FREE(pol->marker); + SAFE_FREE(pol->marker); #endif - *pol = r.pol; - } - return result; + return rpccli_lsa_Close( cli, mem_ctx, &policy ); } /** Lookup a list of sids */ |