1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +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:
Stefan Metzmacher 2017-07-13 15:49:32 +02:00 committed by Andreas Schneider
parent 3042107a83
commit 71ca6fcf13

View File

@ -230,6 +230,10 @@ static NTSTATUS gensec_spnego_create_negTokenInit(struct gensec_security *gensec
mechTypes, mechTypes,
GENSEC_OID_SPNEGO); GENSEC_OID_SPNEGO);
for (i=0; all_sec && all_sec[i].op; i++) { 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, nt_status = gensec_subcontext_start(spnego_state,
gensec_security, gensec_security,
&spnego_state->sub_sec_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; spnego_state->sub_sec_ready = true;
} }
if (GENSEC_UPDATE_IS_NTERROR(nt_status)) { if (!GENSEC_UPDATE_IS_NTERROR(nt_status)) {
const char *next = NULL; goto reply;
const char *principal = NULL; }
int dbg_level = DBGLVL_WARNING;
if (all_sec[i+1].op != NULL) { if (all_sec[i+1].op != NULL) {
next = all_sec[i+1].op->name; 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 * Pretend we never started it
*/ */
gensec_spnego_update_sub_abort(spnego_state); 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))); DEBUG(10, ("Failed to setup SPNEGO negTokenInit request: %s\n", nt_errstr(nt_status)));
return nt_status; return nt_status;