arm-trusted-firmware-mvebu: use SOURCE_VERSION instead of VERSION
[openwrt/staging/pepe2k.git] / package / network / services / dropbear / patches / 006-dropbearkey-add-missing-break-in-switch.patch
1 From 39d955c49f31fc155e885447ee2be61c869d8c2d Mon Sep 17 00:00:00 2001
2 From: Matt Johnston <matt@ucc.asn.au>
3 Date: Tue, 3 Jan 2023 22:05:14 +0800
4 Subject: Add missing break in switch
5
6 Has no effect on execution, the fallthrough does nothing
7 Closes #208
8 ---
9 dropbearkey.c | 1 +
10 1 file changed, 1 insertion(+)
11
12 --- a/dropbearkey.c
13 +++ b/dropbearkey.c
14 @@ -139,6 +139,7 @@ static void check_signkey_bits(enum sign
15 dropbear_exit("DSS keys have a fixed size of 1024 bits\n");
16 exit(EXIT_FAILURE);
17 }
18 + break;
19 #endif
20 default:
21 (void)0; /* quiet, compiler. ecdsa handles checks itself */