diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-24 14:57:03 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-24 14:57:03 +0200 |
commit | 27dce768d3801409a734f24765ea92e67ffbd014 (patch) | |
tree | b55ed17bb224df5396d6ec930e54c34506f8f04b /source4/libcli | |
parent | 61013deff80dbe3a3dfaa7b5060609500f1f63fa (diff) | |
download | samba-27dce768d3801409a734f24765ea92e67ffbd014.tar.gz samba-27dce768d3801409a734f24765ea92e67ffbd014.tar.bz2 samba-27dce768d3801409a734f24765ea92e67ffbd014.zip |
Remove more usages of global_loadparm.
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/smb_composite/sesssetup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/smb_composite/sesssetup.c b/source4/libcli/smb_composite/sesssetup.c index 76c1f952e7..2ca12a5898 100644 --- a/source4/libcli/smb_composite/sesssetup.c +++ b/source4/libcli/smb_composite/sesssetup.c @@ -260,7 +260,7 @@ static NTSTATUS session_setup_nt1(struct composite_context *c, { NTSTATUS nt_status = NT_STATUS_INTERNAL_ERROR; struct sesssetup_state *state = talloc_get_type(c->private_data, struct sesssetup_state); - DATA_BLOB names_blob = NTLMv2_generate_names_blob(state, session->transport->socket->hostname, lp_workgroup(global_loadparm)); + DATA_BLOB names_blob = NTLMv2_generate_names_blob(state, session->transport->socket->hostname, cli_credentials_get_domain(io->in.credentials)); DATA_BLOB session_key = data_blob(NULL, 0); int flags = CLI_CRED_NTLM_AUTH; @@ -334,7 +334,7 @@ static NTSTATUS session_setup_old(struct composite_context *c, NTSTATUS nt_status; struct sesssetup_state *state = talloc_get_type(c->private_data, struct sesssetup_state); const char *password = cli_credentials_get_password(io->in.credentials); - DATA_BLOB names_blob = NTLMv2_generate_names_blob(state, session->transport->socket->hostname, lp_workgroup(global_loadparm)); + DATA_BLOB names_blob = NTLMv2_generate_names_blob(state, session->transport->socket->hostname, cli_credentials_get_domain(io->in.credentials)); DATA_BLOB session_key; int flags = 0; if (session->options.lanman_auth) { |