summaryrefslogtreecommitdiff
path: root/source3/libsmb/cliconnect.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2010-07-19 15:41:45 -0700
committerJeremy Allison <jra@samba.org>2010-07-19 15:41:45 -0700
commit625a51138916473eacc1447b11ffd93db0832077 (patch)
treee0b4a627f8b5aaf41a6716f1a99f42e398a7fb3c /source3/libsmb/cliconnect.c
parent962951e63d0bd3588085314b3bd94bac35415347 (diff)
downloadsamba-625a51138916473eacc1447b11ffd93db0832077.tar.gz
samba-625a51138916473eacc1447b11ffd93db0832077.tar.bz2
samba-625a51138916473eacc1447b11ffd93db0832077.zip
Remove parse_negTokenTarg(), as it's actually incorrect. We're processing
negTokenInit's here. Use common code in spnego_parse_negTokenInit(). Jeremy.
Diffstat (limited to 'source3/libsmb/cliconnect.c')
-rw-r--r--source3/libsmb/cliconnect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/cliconnect.c b/source3/libsmb/cliconnect.c
index 8d4c1901c1..7fe359b9ae 100644
--- a/source3/libsmb/cliconnect.c
+++ b/source3/libsmb/cliconnect.c
@@ -1224,7 +1224,7 @@ ADS_STATUS cli_session_setup_spnego(struct cli_state *cli, const char *user,
* negprot reply. It is WRONG to depend on the principal sent in the
* negprot reply, but right now we do it. If we don't receive one,
* we try to best guess, then fall back to NTLM. */
- if (!spnego_parse_negTokenInit(blob, OIDs, &principal)) {
+ if (!spnego_parse_negTokenInit(blob, OIDs, &principal, NULL)) {
data_blob_free(&blob);
return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER);
}