diff options
author | Jeremy Allison <jra@samba.org> | 2003-07-30 23:49:29 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-07-30 23:49:29 +0000 |
commit | 29ca70cd34d3ba927ea1a9915ebd247f64965bd5 (patch) | |
tree | 6771fb7dbb2efbf224c46cb8ce9010c20f799d15 /source3/client | |
parent | d6ee1d167c81d3b632af0415445745a180d58b3c (diff) | |
download | samba-29ca70cd34d3ba927ea1a9915ebd247f64965bd5.tar.gz samba-29ca70cd34d3ba927ea1a9915ebd247f64965bd5.tar.xz samba-29ca70cd34d3ba927ea1a9915ebd247f64965bd5.zip |
Add a command line option (-S on|off|required) to enable signing on client
connections. Overrides smb.conf parameter if set.
Jeremy.
(This used to be commit 879309671df6b530e0bff69559422a417da4a307)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 2 | ||||
-rw-r--r-- | source3/client/smbspool.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 5319a5ebf5a..e17ae82c0a1 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2529,6 +2529,8 @@ static struct cli_state *do_connect(const char *server, const char *share) c->protocol = max_protocol; c->use_kerberos = use_kerberos; + cli_setup_signing_state(c, cmdline_auth_info.signing_state); + if (!cli_session_request(c, &calling, &called)) { char *p; diff --git a/source3/client/smbspool.c b/source3/client/smbspool.c index 68165792da3..5daefec5a55 100644 --- a/source3/client/smbspool.c +++ b/source3/client/smbspool.c @@ -282,7 +282,7 @@ smb_connect(const char *workgroup, /* I - Workgroup */ get_myname(myname); nt_status = cli_full_connection(&c, myname, server, NULL, 0, share, "?????", - username, workgroup, password, 0, NULL); + username, workgroup, password, 0, Undefined, NULL); if (!NT_STATUS_IS_OK(nt_status)) { fprintf(stderr, "ERROR: Connection failed with error %s\n", nt_errstr(nt_status)); |