diff options
| author | Liangbin Lian | 2024-12-01 04:45:34 +0000 |
|---|---|---|
| committer | John Crispin | 2024-12-12 08:46:38 +0000 |
| commit | 3710323a469212ef0bbc5dc414895f6198edb67e (patch) | |
| tree | 4a112fdd8b655a745faa951e27e82040e6f3cd0a | |
| parent | 65a1c666f2eb2511430a9064686b3590e08b1773 (diff) | |
| download | openwrt-3710323a469212ef0bbc5dc414895f6198edb67e.tar.gz | |
package/firewall: fix config typo
change Support-UDP-Traceroute rule from 'enabled false' to 'enabled 0'
Signed-off-by: Liangbin Lian <jjm2473@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/17133
Signed-off-by: John Crispin <john@phrozen.org>
| -rw-r--r-- | package/network/config/firewall/Makefile | 2 | ||||
| -rw-r--r-- | package/network/config/firewall/files/firewall.config | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/network/config/firewall/Makefile b/package/network/config/firewall/Makefile index a4b17f0b53..042883264d 100644 --- a/package/network/config/firewall/Makefile +++ b/package/network/config/firewall/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=firewall -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=$(PROJECT_GIT)/project/firewall3.git diff --git a/package/network/config/firewall/files/firewall.config b/package/network/config/firewall/files/firewall.config index b90ac7af0a..4c7ef8a96e 100644 --- a/package/network/config/firewall/files/firewall.config +++ b/package/network/config/firewall/files/firewall.config @@ -138,7 +138,7 @@ config rule option proto udp option family ipv4 option target REJECT - option enabled false + option enabled 0 # include a file with users custom iptables rules config include |