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

firewall: move include sourcing into a subshell, this makes the firewall init immune against exit in the include scripts

SVN-Revision: 25835
This commit is contained in:
Jo-Philipp Wich 2011-03-02 19:20:29 +00:00
parent d1f44a7598
commit 13333a6742
2 changed files with 5 additions and 3 deletions

@ -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

@ -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 )
}