1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-24 20:53:22 +02:00

[backfire] merge r25835

git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@25836 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2011-03-02 19:21:07 +00:00
parent f457f3aecb
commit 501da5a947
2 changed files with 5 additions and 3 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=firewall PKG_NAME:=firewall
PKG_VERSION:=2 PKG_VERSION:=2
PKG_RELEASE:=22 PKG_RELEASE:=23
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk

View File

@ -271,8 +271,10 @@ fw_load_notrack_zone() {
fw_load_include() { fw_load_include() {
local name="$1" local name="$1"
local path; config_get path ${name} path local path
[ -e $path ] && . $path config_get path ${name} path
[ -e $path ] && ( . $path )
} }