summaryrefslogtreecommitdiffstats
path: root/source/libcli/composite
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2005-09-22 01:50:58 +0000
committerAndrew Bartlett <abartlet@samba.org>2005-09-22 01:50:58 +0000
commit8847c6aaeac48d9b37098f08c97a3e45bf1d3a13 (patch)
tree1f5665cd125bc4f95ccdb589813b8fdb53ddc565 /source/libcli/composite
parent6af809536d1aeb07b9f03d951edbe35c3fa9f4d1 (diff)
downloadsamba-8847c6aaeac48d9b37098f08c97a3e45bf1d3a13.tar.gz
samba-8847c6aaeac48d9b37098f08c97a3e45bf1d3a13.tar.xz
samba-8847c6aaeac48d9b37098f08c97a3e45bf1d3a13.zip
r10402: Make the RPC-SAMLOGON test pass against Win2k3 SP0 again.
I still have issues with Win2k3 SP1, and Samba4 doesn't pass it's own test for the moment, but I'm working on these issues :-) This required a change to the credentials API, so that the special case for NTLM logins using a principal was indeed handled as a special, not general case. Also don't set the realm from a ccache, as then it overrides --option=realm=. Andrew Bartlett
Diffstat (limited to 'source/libcli/composite')
-rw-r--r--source/libcli/composite/sesssetup.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/source/libcli/composite/sesssetup.c b/source/libcli/composite/sesssetup.c
index b925f99bed2..3bd9ed285d5 100644
--- a/source/libcli/composite/sesssetup.c
+++ b/source/libcli/composite/sesssetup.c
@@ -174,8 +174,9 @@ static NTSTATUS session_setup_nt1(struct composite_context *c,
state->setup.nt1.in.capabilities = io->in.capabilities;
state->setup.nt1.in.os = "Unix";
state->setup.nt1.in.lanman = talloc_asprintf(state, "Samba %s", SAMBA_VERSION_STRING);
- state->setup.nt1.in.user = cli_credentials_get_username(io->in.credentials, state);
- state->setup.nt1.in.domain = cli_credentials_get_domain(io->in.credentials);
+ cli_credentials_get_ntlm_username_domain(io->in.credentials, state,
+ &state->setup.nt1.in.user,
+ &state->setup.nt1.in.domain);
if (!password) {
state->setup.nt1.in.password1 = data_blob(NULL, 0);
@@ -259,10 +260,11 @@ static NTSTATUS session_setup_old(struct composite_context *c,
state->setup.old.in.mpx_max = session->transport->options.max_mux;
state->setup.old.in.vc_num = 1;
state->setup.old.in.sesskey = io->in.sesskey;
- state->setup.old.in.domain = cli_credentials_get_domain(io->in.credentials);
- state->setup.old.in.user = cli_credentials_get_username(io->in.credentials, state);
state->setup.old.in.os = "Unix";
state->setup.old.in.lanman = talloc_asprintf(state, "Samba %s", SAMBA_VERSION_STRING);
+ cli_credentials_get_ntlm_username_domain(io->in.credentials, state,
+ &state->setup.old.in.user,
+ &state->setup.old.in.domain);
if (!password) {
state->setup.old.in.password = data_blob(NULL, 0);