From ea0048712d6d9b64f6c492bcc3f527d7db6c3bc4 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 8 Apr 2008 23:04:22 +0200 Subject: Re-run make idl. Guenther (This used to be commit ad3073749089f7166d9070c232ef02e6ba203215) --- source3/librpc/gen_ndr/cli_lsa.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'source3/librpc/gen_ndr/cli_lsa.c') diff --git a/source3/librpc/gen_ndr/cli_lsa.c b/source3/librpc/gen_ndr/cli_lsa.c index 8df638f051..4e81f7094c 100644 --- a/source3/librpc/gen_ndr/cli_lsa.c +++ b/source3/librpc/gen_ndr/cli_lsa.c @@ -1398,7 +1398,7 @@ NTSTATUS rpccli_lsa_LookupPrivName(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, struct policy_handle *handle /* [in] [ref] */, struct lsa_LUID *luid /* [in] [ref] */, - struct lsa_StringLarge *name /* [out] [unique] */) + struct lsa_StringLarge **name /* [out] [ref] */) { struct lsa_LookupPrivName r; NTSTATUS status; @@ -1431,9 +1431,7 @@ NTSTATUS rpccli_lsa_LookupPrivName(struct rpc_pipe_client *cli, } /* Return variables */ - if (name && r.out.name) { - *name = *r.out.name; - } + *name = *r.out.name; /* Return result */ return r.out.result; -- cgit