1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-26 21:57:41 +03:00

s3:client: use cli_session_setup_creds() in smbspool.c

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Stefan Metzmacher 2016-10-28 13:33:58 +02:00 committed by Andreas Schneider
parent 5e51f6457e
commit a484a70f22

View File

@ -405,6 +405,7 @@ smb_complete_connection(const char *myname,
{
struct cli_state *cli; /* New connection */
NTSTATUS nt_status;
struct cli_credentials *creds = NULL;
/* Start the SMB connection */
*need_auth = false;
@ -424,9 +425,22 @@ smb_complete_connection(const char *myname,
return NULL;
}
nt_status = cli_session_setup(cli, username,
password,
workgroup);
creds = cli_session_creds_init(cli,
username,
workgroup,
NULL, /* realm */
password,
cli->use_kerberos,
cli->fallback_after_kerberos,
cli->use_ccache,
cli->pw_nt_hash);
if (creds == NULL) {
fprintf(stderr, "ERROR: cli_session_creds_init failed\n");
cli_shutdown(cli);
return NULL;
}
nt_status = cli_session_setup_creds(cli, creds);
if (!NT_STATUS_IS_OK(nt_status)) {
fprintf(stderr, "ERROR: Session setup failed: %s\n", nt_errstr(nt_status));