diff options
author | Andrew Bartlett <abartlet@samba.org> | 2014-09-23 14:19:35 -0700 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-10-17 12:57:07 +0200 |
commit | 2b9d6d3d9b6766ba2e48523b005a7eecf3e05412 (patch) | |
tree | 6abb21fc8ecb84fe7953d742ba9104063ea5d220 /source3/lib/netapi | |
parent | 07bd866f59f8a6a29521fbf0e17963aaef8575de (diff) | |
download | samba-2b9d6d3d9b6766ba2e48523b005a7eecf3e05412.tar.gz samba-2b9d6d3d9b6766ba2e48523b005a7eecf3e05412.tar.xz samba-2b9d6d3d9b6766ba2e48523b005a7eecf3e05412.zip |
s3:libsmb: Remove unused password copy stored in cli_state
Change-Id: Ia6b33a25628ae08be8a8c6baeb71ce390315cb45
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/lib/netapi')
-rw-r--r-- | source3/lib/netapi/cm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/lib/netapi/cm.c b/source3/lib/netapi/cm.c index 801e61f4a4..cad84aa18d 100644 --- a/source3/lib/netapi/cm.c +++ b/source3/lib/netapi/cm.c @@ -115,7 +115,6 @@ static WERROR libnetapi_open_ipc_connection(struct libnetapi_ctx *ctx, 0, 0x20, &cli_ipc); if (NT_STATUS_IS_OK(status)) { cli_set_username(cli_ipc, ctx->username); - cli_set_password(cli_ipc, ctx->password); cli_set_domain(cli_ipc, ctx->workgroup); } else { cli_ipc = NULL; |