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:23:06 +0200
commit7c20875891223e61b6be1509bd1458be5242678e (patch)
tree9f4f276c89342df8d81ad480807b87b573cde8e6
parent0c7a772301cb0ce16cd5ca119472a23695a1c578 (diff)
downloadlibssh-7c20875891223e61b6be1509bd1458be5242678e.tar.gz
libssh-7c20875891223e61b6be1509bd1458be5242678e.tar.xz
libssh-7c20875891223e61b6be1509bd1458be5242678e.zip
pki: Mark explicit fall through
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
-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;