1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r6078: Correctly fix the failures for NT1 (not SPNEGO) session setups in the

client.  The issue was actually a cut-and-paste bug, I was filling in
the .old not the .nt1 part of the union.

I've also removed the 'error checks' - I'll shortly document the API
for the credentials code to clarify that it will always return a
pointer here, except in cases of programmer error.

Tridge:  I hope this is OK.

Andrew Bartlett
(This used to be commit 6439de9ec8)
This commit is contained in:
Andrew Bartlett 2005-03-27 06:26:00 +00:00 committed by Gerald (Jerry) Carter
parent 0d36266cd4
commit 68d7a5e383

View File

@ -180,12 +180,8 @@ static struct smbcli_request *session_setup_nt1(struct composite_context *c,
state->setup.nt1.in.os = "Unix";
state->setup.nt1.in.lanman = "Samba";
state->setup.nt1.in.user = cli_credentials_get_username(io->in.credentials);
if (state->setup.nt1.in.user == NULL) return NULL;
state->setup.nt1.in.domain = cli_credentials_get_domain(io->in.credentials);
if (state->setup.nt1.in.domain == NULL) return NULL;
state->setup.old.in.domain = cli_credentials_get_domain(io->in.credentials);
state->setup.old.in.user = cli_credentials_get_username(io->in.credentials);
if (!password) {
state->setup.nt1.in.password1 = data_blob(NULL, 0);
state->setup.nt1.in.password2 = data_blob(NULL, 0);