gsspa: Quiet GCC fallthrough warning

Somehow GCC was honoring lower-case "fallthrough" comments elsewhere but
not here.  Anyways, there was no need to fall through, so now we don't.
This commit is contained in:
Nicolas Williams
2022-01-14 14:39:31 -06:00
parent 6426e7550f
commit 005a43da96

View File

@@ -65,10 +65,11 @@ _krb5_gss_map_error(OM_uint32 major, OM_uint32 minor)
break;
case GSS_S_FAILURE:
if (minor == (OM_uint32)KRB5KRB_AP_ERR_BAD_INTEGRITY ||
minor == (OM_uint32)HNTLM_ERR_AUTH) {
minor == (OM_uint32)HNTLM_ERR_AUTH)
ret = KRB5KRB_AP_ERR_BAD_INTEGRITY;
break;
}
else
ret = KRB5KDC_ERR_PREAUTH_FAILED;
break;
default:
ret = KRB5KDC_ERR_PREAUTH_FAILED;
break;