From a6373c68bdf4d0e7533b10b47d0aba0cd3f96fdc Mon Sep 17 00:00:00 2001 From: teastep Date: Thu, 31 Aug 2006 14:26:23 +0000 Subject: [PATCH] Fix oversight in last night's change to policy processing git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@4497 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall/compiler | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/compiler b/Shorewall/compiler index 3feb9d38f..0cdede440 100755 --- a/Shorewall/compiler +++ b/Shorewall/compiler @@ -537,8 +537,6 @@ validate_policy() esac case ${policy%:*} in - ACCEPT|CONTINUE|QUEUE) - ;; DROP) [ -n "${default:=$DROP_DEFAULT}" ] ;; @@ -548,6 +546,8 @@ validate_policy() ACCEPT) [ -n "${default:=$ACCEPTT_DEFAULT}" ] ;; + CONTINUE) + ;; QUEUE) [ -n "${default:=$QUEUE_DEFAULT}" ] ;;