aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelen <jjelen@redhat.com>2020-05-04 11:58:29 +0200
committerAndreas Schneider <asn@cryptomilk.org>2020-05-05 14:33:32 +0200
commit929a6b7d501b6740903289d279e99a6aa4fa9efc (patch)
tree53974b78ff82528d3a00afa2b4fec17144eb642a
parent88d676cf1a1d1af3343dafad60f4c1c16e773a81 (diff)
downloadlibssh-929a6b7d501b6740903289d279e99a6aa4fa9efc.tar.gz
libssh-929a6b7d501b6740903289d279e99a6aa4fa9efc.tar.xz
libssh-929a6b7d501b6740903289d279e99a6aa4fa9efc.zip
pki: Mark explicit fall through
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org> (cherry picked from commit 7c20875891223e61b6be1509bd1458be5242678e)
-rw-r--r--src/pki_ed25519_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pki_ed25519_common.c b/src/pki_ed25519_common.c
index 738825f5..9db14dac 100644
--- a/src/pki_ed25519_common.c
+++ b/src/pki_ed25519_common.c
@@ -112,7 +112,7 @@ int pki_ed25519_key_cmp(const ssh_key k1,
if (cmp != 0) {
return 1;
}
- /* FALL THROUGH */
+ FALL_THROUGH;
case SSH_KEY_CMP_PUBLIC:
if (k1->ed25519_pubkey == NULL || k2->ed25519_pubkey == NULL) {
return 1;