summaryrefslogtreecommitdiff
path: root/source4/libcli/composite
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2005-03-27 06:26:00 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:11:17 -0500
commit68d7a5e38346393a66e1d97da0348f474dd2ae4c (patch)
treedad95dfa241b6241a328449a91e98d3aebc5b55d /source4/libcli/composite
parent0d36266cd4e0034ca5ed2755084a64db3e235ac4 (diff)
downloadsamba-68d7a5e38346393a66e1d97da0348f474dd2ae4c.tar.gz
samba-68d7a5e38346393a66e1d97da0348f474dd2ae4c.tar.bz2
samba-68d7a5e38346393a66e1d97da0348f474dd2ae4c.zip
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 6439de9ec8c8d24197ea69dc337473e54c8b36b8)
Diffstat (limited to 'source4/libcli/composite')
-rw-r--r--source4/libcli/composite/sesssetup.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source4/libcli/composite/sesssetup.c b/source4/libcli/composite/sesssetup.c
index a33ace2420..ab46c198ef 100644
--- a/source4/libcli/composite/sesssetup.c
+++ b/source4/libcli/composite/sesssetup.c
@@ -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);