From: jow Date: Wed, 2 Mar 2011 19:21:07 +0000 (+0000) Subject: [backfire] merge r25835 X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=501da5a9473fb2284451437ec534e3967aa8604a;hp=f457f3aecb43af4507112b2d4bce28f7c6bf6474;p=openwrt-10.03%2F.git [backfire] merge r25835 git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@25836 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/firewall/Makefile b/package/firewall/Makefile index 3d61e0988..a8a62c287 100644 --- a/package/firewall/Makefile +++ b/package/firewall/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=firewall PKG_VERSION:=2 -PKG_RELEASE:=22 +PKG_RELEASE:=23 include $(INCLUDE_DIR)/package.mk diff --git a/package/firewall/files/lib/core_init.sh b/package/firewall/files/lib/core_init.sh index c7e41e7ff..42124b39b 100644 --- a/package/firewall/files/lib/core_init.sh +++ b/package/firewall/files/lib/core_init.sh @@ -271,8 +271,10 @@ fw_load_notrack_zone() { fw_load_include() { local name="$1" - local path; config_get path ${name} path - [ -e $path ] && . $path + local path + config_get path ${name} path + + [ -e $path ] && ( . $path ) }