diff options
author | Jeremy Allison <jra@samba.org> | 2010-07-19 15:41:45 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-07-19 15:41:45 -0700 |
commit | 625a51138916473eacc1447b11ffd93db0832077 (patch) | |
tree | e0b4a627f8b5aaf41a6716f1a99f42e398a7fb3c /source3/smbd | |
parent | 962951e63d0bd3588085314b3bd94bac35415347 (diff) | |
download | samba-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/smbd')
-rw-r--r-- | source3/smbd/sesssetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index 27eb4f6c48..08119b2be1 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -732,7 +732,7 @@ NTSTATUS parse_spnego_mechanisms(DATA_BLOB blob_in, *kerb_mechOID = NULL; /* parse out the OIDs and the first sec blob */ - if (!parse_negTokenTarg(blob_in, OIDs, pblob_out)) { + if (!spnego_parse_negTokenInit(blob_in, OIDs, NULL, pblob_out)) { return NT_STATUS_LOGON_FAILURE; } |