mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
auth/spnego: remove one more useless indentation level in gensec_spnego_create_negTokenInit()
Check with git show -w -U20 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
parent
3042107a83
commit
71ca6fcf13
@ -230,6 +230,10 @@ static NTSTATUS gensec_spnego_create_negTokenInit(struct gensec_security *gensec
|
||||
mechTypes,
|
||||
GENSEC_OID_SPNEGO);
|
||||
for (i=0; all_sec && all_sec[i].op; i++) {
|
||||
const char *next = NULL;
|
||||
const char *principal = NULL;
|
||||
int dbg_level = DBGLVL_WARNING;
|
||||
|
||||
nt_status = gensec_subcontext_start(spnego_state,
|
||||
gensec_security,
|
||||
&spnego_state->sub_sec_security);
|
||||
@ -261,10 +265,9 @@ static NTSTATUS gensec_spnego_create_negTokenInit(struct gensec_security *gensec
|
||||
spnego_state->sub_sec_ready = true;
|
||||
}
|
||||
|
||||
if (GENSEC_UPDATE_IS_NTERROR(nt_status)) {
|
||||
const char *next = NULL;
|
||||
const char *principal = NULL;
|
||||
int dbg_level = DBGLVL_WARNING;
|
||||
if (!GENSEC_UPDATE_IS_NTERROR(nt_status)) {
|
||||
goto reply;
|
||||
}
|
||||
|
||||
if (all_sec[i+1].op != NULL) {
|
||||
next = all_sec[i+1].op->name;
|
||||
@ -293,13 +296,8 @@ static NTSTATUS gensec_spnego_create_negTokenInit(struct gensec_security *gensec
|
||||
* Pretend we never started it
|
||||
*/
|
||||
gensec_spnego_update_sub_abort(spnego_state);
|
||||
continue;
|
||||
}
|
||||
|
||||
goto reply;
|
||||
}
|
||||
gensec_spnego_update_sub_abort(spnego_state);
|
||||
|
||||
DEBUG(10, ("Failed to setup SPNEGO negTokenInit request: %s\n", nt_errstr(nt_status)));
|
||||
return nt_status;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user