diff options
author | Günther Deschner <gd@samba.org> | 2008-02-11 20:49:24 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-11 20:49:24 +0100 |
commit | 9129d20447a0d181d20dae337d32a9f73c6b12f3 (patch) | |
tree | 86806f453bdbbe76b18a767e182aed65c2e22f05 /source3/librpc/gen_ndr/cli_lsa.c | |
parent | 8c85a73d1ebdb0e961e4c4226df0af0c22236d15 (diff) | |
download | samba-9129d20447a0d181d20dae337d32a9f73c6b12f3.tar.gz samba-9129d20447a0d181d20dae337d32a9f73c6b12f3.tar.bz2 samba-9129d20447a0d181d20dae337d32a9f73c6b12f3.zip |
Re-run make idl.
Guenther
(This used to be commit 4d9f48f918ac5a0e7df0f4e55673c5b285efc4d5)
Diffstat (limited to 'source3/librpc/gen_ndr/cli_lsa.c')
-rw-r--r-- | source3/librpc/gen_ndr/cli_lsa.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source3/librpc/gen_ndr/cli_lsa.c b/source3/librpc/gen_ndr/cli_lsa.c index d2c54efff9..f910a82f35 100644 --- a/source3/librpc/gen_ndr/cli_lsa.c +++ b/source3/librpc/gen_ndr/cli_lsa.c @@ -1957,8 +1957,8 @@ NTSTATUS rpccli_lsa_OpenPolicy2(struct rpc_pipe_client *cli, NTSTATUS rpccli_lsa_GetUserName(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, const char *system_name, - struct lsa_String *account_name, - struct lsa_StringPointer *authority_name) + struct lsa_String **account_name, + struct lsa_String **authority_name) { struct lsa_GetUserName r; NTSTATUS status; @@ -1992,9 +1992,7 @@ NTSTATUS rpccli_lsa_GetUserName(struct rpc_pipe_client *cli, } /* Return variables */ - if (account_name && r.out.account_name) { - *account_name = *r.out.account_name; - } + *account_name = *r.out.account_name; if (authority_name && r.out.authority_name) { *authority_name = *r.out.authority_name; } |