diff options
| author | Stijn Tintel | 2022-06-13 08:05:10 +0000 |
|---|---|---|
| committer | Stijn Tintel | 2022-06-13 14:32:01 +0000 |
| commit | b9d35ff6b495465413a81622e849076a9e1fa690 (patch) | |
| tree | e524e16dc1bfd346c05b4b60796f324e29a1ed8c | |
| parent | 11f5c7bf88acb104cdd306761ff662aa72ba9340 (diff) | |
| download | firewall4-b9d35ff6b495465413a81622e849076a9e1fa690.tar.gz | |
fw4.uc: don't skip zone for unavailable helper
Skipping a zone because a configured helper is not available is a bigger
security risk than not setting up the helper, as a zone might have
stricter settings than the defaults
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| -rw-r--r-- | root/usr/share/ucode/fw4.uc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/root/usr/share/ucode/fw4.uc b/root/usr/share/ucode/fw4.uc index a338446..0200758 100644 --- a/root/usr/share/ucode/fw4.uc +++ b/root/usr/share/ucode/fw4.uc @@ -1884,8 +1884,7 @@ return { for (let helper in zone.helper) { if (!helper.available) { - this.warn_section(data, `uses unavailable ct helper '${zone.helper.name}', ignoring section`); - return; + this.warn_section(data, `uses unavailable ct helper '${zone.helper.name}'`); } } |