diff options
author | Jeremy Allison <jra@samba.org> | 2008-01-05 00:41:48 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-01-05 00:41:48 -0800 |
commit | 160fefc71a1c0d5cc596b2291ac6e54c4d7c4c6d (patch) | |
tree | 9fa305e6974781af0ea6f4c775d454087898f305 /source3/utils/net.c | |
parent | 9baa97a46ebb92a5968ceba0fb5c2de51e6fa8f0 (diff) | |
download | samba-160fefc71a1c0d5cc596b2291ac6e54c4d7c4c6d.tar.gz samba-160fefc71a1c0d5cc596b2291ac6e54c4d7c4c6d.tar.xz samba-160fefc71a1c0d5cc596b2291ac6e54c4d7c4c6d.zip |
Fix args to cli_force_encryption.
Jeremy.
(This used to be commit 7b0826aeec284fb129dc1101a5eae2ca96c7cfb6)
Diffstat (limited to 'source3/utils/net.c')
-rw-r--r-- | source3/utils/net.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/utils/net.c b/source3/utils/net.c index 59316091bad..586ea2fdb66 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -202,8 +202,7 @@ NTSTATUS connect_to_service(struct cli_state **c, nt_status = cli_force_encryption(*c, opt_user_name, opt_password, - opt_workgroup, - service_name); + opt_workgroup); if (NT_STATUS_EQUAL(nt_status,NT_STATUS_NOT_SUPPORTED)) { d_printf("Encryption required and " |