diff options
author | Jeremy Allison <jra@samba.org> | 2008-01-05 00:23:35 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-01-05 00:23:35 -0800 |
commit | 9baa97a46ebb92a5968ceba0fb5c2de51e6fa8f0 (patch) | |
tree | 5a6af8ca801ef15316daf9abdd7b6dc965f4a099 /source3/rpcclient | |
parent | 4881ed00ca1d0ab156863c6821db670c70f5d0ea (diff) | |
download | samba-9baa97a46ebb92a5968ceba0fb5c2de51e6fa8f0.tar.gz samba-9baa97a46ebb92a5968ceba0fb5c2de51e6fa8f0.tar.bz2 samba-9baa97a46ebb92a5968ceba0fb5c2de51e6fa8f0.zip |
Add general '-e' option to enable smb encryption
on tools.
Jeremy.
(This used to be commit 757653966fc1384159bd2d57c5670cd8af0cae96)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/rpcclient.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index 6f6e1e6474..dd8b911bb8 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -850,6 +850,18 @@ out_free: goto done; } + if (get_cmdline_auth_info_smb_encrypt()) { + nt_status = cli_cm_force_encryption(cli, + get_cmdline_auth_info_username(), + get_cmdline_auth_info_password(), + lp_workgroup(), + "IPC$"); + if (!NT_STATUS_IS_OK(nt_status)) { + result = 1; + goto done; + } + } + #if 0 /* COMMENT OUT FOR TESTING */ memset(cmdline_auth_info.password,'X',sizeof(cmdline_auth_info.password)); #endif |