diff options
author | Andreas Schneider <asn@samba.org> | 2017-07-26 17:33:12 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2018-03-01 04:37:43 +0100 |
commit | e2f1255840b0066c223f1f9caf7a3865fa4021a3 (patch) | |
tree | 422f454cd628bced8c0b1981bdb3e9cc361014d6 /source4/auth | |
parent | 69fa5ecb6acaacdc0fbd8942baa3bbba1dabb75a (diff) | |
download | samba-e2f1255840b0066c223f1f9caf7a3865fa4021a3.tar.gz |
s4:auth: Add FALL_THROUGH statements in gensec_krb5.c
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/gensec/gensec_krb5.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source4/auth/gensec/gensec_krb5.c b/source4/auth/gensec/gensec_krb5.c index 86ec23fe433..0323da87d29 100644 --- a/source4/auth/gensec/gensec_krb5.c +++ b/source4/auth/gensec/gensec_krb5.c @@ -407,12 +407,9 @@ static NTSTATUS gensec_krb5_common_client_creds(struct gensec_security *gensec_s /* Too much clock skew - we will need to kinit to re-skew the clock */ case KRB5KRB_AP_ERR_SKEW: case KRB5_KDCREP_SKEW: - { DEBUG(3, ("kerberos (mk_req) failed: %s\n", smb_get_krb5_error_message(gensec_krb5_state->smb_krb5_context->krb5_context, ret, gensec_krb5_state))); - /*fall through*/ - } - + FALL_THROUGH; /* just don't print a message for these really ordinary messages */ case KRB5_FCC_NOFILE: case KRB5_CC_NOTFOUND: |