From b7ced8e0307b9ae0eac3c24f8b5865c560598e53 Mon Sep 17 00:00:00 2001 From: nser77 <104022475+nser77@users.noreply.github.com> Date: Fri, 4 Oct 2024 09:21:11 +0200 Subject: [PATCH] FIRE-4508 - Fix typo in conditional expression --- include/tests_firewalls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tests_firewalls b/include/tests_firewalls index 6852b536..92e0fc78 100644 --- a/include/tests_firewalls +++ b/include/tests_firewalls @@ -122,7 +122,7 @@ LogText "Result: iptables ${table} -- ${chainname} policy is ${policy}." LogText "Result: ${policy}" - if [ "${TABLE}" = "filter" ]; then + if [ "${table}" = "filter" ]; then if [ "${chainname}" = "INPUT" ]; then case ${policy} in "ACCEPT")