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/libads | |
parent | 962951e63d0bd3588085314b3bd94bac35415347 (diff) | |
download | samba-625a51138916473eacc1447b11ffd93db0832077.tar.gz samba-625a51138916473eacc1447b11ffd93db0832077.tar.xz 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/libads')
-rw-r--r-- | source3/libads/sasl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/sasl.c b/source3/libads/sasl.c index a37d1e8474..aa3acbd9ae 100644 --- a/source3/libads/sasl.c +++ b/source3/libads/sasl.c @@ -779,7 +779,7 @@ static ADS_STATUS ads_sasl_spnego_bind(ADS_STRUCT *ads) /* the server sent us the first part of the SPNEGO exchange in the negprot reply */ - if (!spnego_parse_negTokenInit(blob, OIDs, &given_principal)) { + if (!spnego_parse_negTokenInit(blob, OIDs, &given_principal, NULL)) { data_blob_free(&blob); status = ADS_ERROR(LDAP_OPERATIONS_ERROR); goto failed; |