From: Frank Lichtenheld Date: Fri, 28 Feb 2025 17:02:32 +0000 (+0100) Subject: Add more 'intentional fallthrough' comments X-Git-Tag: v2.7_alpha1~72 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fed37d003d9cbc9e7c3ea5fdd0f0a287f4cee538;p=thirdparty%2Fopenvpn.git Add more 'intentional fallthrough' comments To make it easier to exclude them from compiler warnings. Based on the existing comment in init.c Change-Id: I925accd8267f94ecfd9ccea85bae965dc2a10208 Signed-off-by: Frank Lichtenheld Acked-by: Arne Schwabe Message-Id: <20250228170232.322186-1-frank@lichtenheld.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg30990.html Signed-off-by: Gert Doering --- diff --git a/src/openvpn/list.c b/src/openvpn/list.c index 69f1510c7..6987defa4 100644 --- a/src/openvpn/list.c +++ b/src/openvpn/list.c @@ -437,34 +437,44 @@ hash_func(const uint8_t *k, uint32_t length, uint32_t initval) { case 11: c += ((uint32_t) k[10] << 24); + /* Intentional [[fallthrough]]; */ case 10: c += ((uint32_t) k[9] << 16); + /* Intentional [[fallthrough]]; */ case 9: c += ((uint32_t) k[8] << 8); + /* Intentional [[fallthrough]]; */ /* the first byte of c is reserved for the length */ case 8: b += ((uint32_t) k[7] << 24); + /* Intentional [[fallthrough]]; */ case 7: b += ((uint32_t) k[6] << 16); + /* Intentional [[fallthrough]]; */ case 6: b += ((uint32_t) k[5] << 8); + /* Intentional [[fallthrough]]; */ case 5: b += k[4]; + /* Intentional [[fallthrough]]; */ case 4: a += ((uint32_t) k[3] << 24); + /* Intentional [[fallthrough]]; */ case 3: a += ((uint32_t) k[2] << 16); + /* Intentional [[fallthrough]]; */ case 2: a += ((uint32_t) k[1] << 8); + /* Intentional [[fallthrough]]; */ case 1: a += k[0]; diff --git a/src/openvpn/push.c b/src/openvpn/push.c index a7cd3bf69..80f906532 100644 --- a/src/openvpn/push.c +++ b/src/openvpn/push.c @@ -98,6 +98,7 @@ receive_auth_failed(struct context *c, const struct buffer *buffer) case AR_INTERACT: ssl_purge_auth(false); + /* Intentional [[fallthrough]]; */ case AR_NOINTERACT: /* SOFT-SIGTUSR1 -- Auth failure error */