Blame SOURCES/0006-evaluate-Mark-fall-through-case-in-str2hooknum.patch

195495
From 07ebd0fa9300176f818789fde2498422fa421090 Mon Sep 17 00:00:00 2001
195495
From: Phil Sutter <phil@nwl.cc>
195495
Date: Fri, 11 Jun 2021 16:19:18 +0200
195495
Subject: [PATCH] evaluate: Mark fall through case in str2hooknum()
195495
195495
It is certainly intentional, so just mark it as such.
195495
195495
Fixes: b4775dec9f80b ("src: ingress inet support")
195495
Signed-off-by: Phil Sutter <phil@nwl.cc>
195495
(cherry picked from commit c2e06beef3390867901080c0d789e3b6257e2b98)
195495
Signed-off-by: Phil Sutter <psutter@redhat.com>
195495
---
195495
 src/evaluate.c | 1 +
195495
 1 file changed, 1 insertion(+)
195495
195495
diff --git a/src/evaluate.c b/src/evaluate.c
195495
index c830dcdbd9651..2a897f469434a 100644
195495
--- a/src/evaluate.c
195495
+++ b/src/evaluate.c
195495
@@ -4030,6 +4030,7 @@ static uint32_t str2hooknum(uint32_t family, const char *hook)
195495
 	case NFPROTO_INET:
195495
 		if (!strcmp(hook, "ingress"))
195495
 			return NF_INET_INGRESS;
195495
+		/* fall through */
195495
 	case NFPROTO_IPV4:
195495
 	case NFPROTO_BRIDGE:
195495
 	case NFPROTO_IPV6:
195495
-- 
195495
2.31.1
195495