diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-12 23:27:10 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-12 23:27:10 +0000 |
commit | 63371656cba7d338c75ad3ed4361ace055b12f3f (patch) | |
tree | b8868b12d486d42bfafaf65c965d857f46dddc6f /applications | |
parent | db1454cf48dbf4787088809973912f804db21eb4 (diff) |
applications/luci-firewall: fix "any" icmp type for ip6tables
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-firewall/luasrc/model/cbi/luci_fw/trule.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-firewall/luasrc/model/cbi/luci_fw/trule.lua b/applications/luci-firewall/luasrc/model/cbi/luci_fw/trule.lua index dc985d8a3..5b6207192 100644 --- a/applications/luci-firewall/luasrc/model/cbi/luci_fw/trule.lua +++ b/applications/luci-firewall/luasrc/model/cbi/luci_fw/trule.lua @@ -66,7 +66,7 @@ proto:value("icmp", "ICMP") icmpt = s:taboption("general", Value, "icmp_type", translate("Match ICMP type")) icmpt:depends("proto", "icmp") -icmpt:value("any") +icmpt:value("", "any") icmpt:value("echo-reply") icmpt:value("destination-unreachable") icmpt:value("network-unreachable") |