1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-19 05:58:53 +02:00

firewall: don't setup nat reflection if negations are used

SVN-Revision: 23142
This commit is contained in:
Jo-Philipp Wich 2010-09-28 11:11:11 +00:00
parent 6a335579b8
commit a1a31f1831

@ -82,6 +82,9 @@ if [ "$ACTION" = "add" ] && [ "$INTERFACE" = "wan" ]; then
[ "$proto" = tcpudp ] && proto="tcp udp"
[ "${inthost#!}" = "$inthost" ] || return 0
[ "${exthost#!}" = "$exthost" ] || return 0
local p
for p in ${proto:-tcp udp}; do
case "$p" in