diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-05 16:04:23 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-05 16:04:23 +0000 |
commit | 75a299db504b662cf00e22e73215ab9f26204dc5 (patch) | |
tree | 6cf1592b9934654ae843a65fc381c7d42f493735 /package/firewall | |
parent | 9f6ef16bdc7b4da0ce9501c08b942df0a86cff0a (diff) | |
download | master-187ad058-75a299db504b662cf00e22e73215ab9f26204dc5.tar.gz master-187ad058-75a299db504b662cf00e22e73215ab9f26204dc5.tar.bz2 master-187ad058-75a299db504b662cf00e22e73215ab9f26204dc5.zip |
[package] /etc/functions.sh => /lib/functions.sh
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32062 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/firewall')
-rw-r--r-- | package/firewall/files/bin/fw | 2 | ||||
-rw-r--r-- | package/firewall/files/firewall.hotplug | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/firewall/files/bin/fw b/package/firewall/files/bin/fw index 0f83b8eed8..5d20cc83ef 100644 --- a/package/firewall/files/bin/fw +++ b/package/firewall/files/bin/fw @@ -1,7 +1,7 @@ #!/bin/sh FW_LIBDIR=/lib/firewall -. /etc/functions.sh +. /lib/functions.sh . ${FW_LIBDIR}/fw.sh case "$(type fw)" in diff --git a/package/firewall/files/firewall.hotplug b/package/firewall/files/firewall.hotplug index 720b34cc89..52e7798485 100644 --- a/package/firewall/files/firewall.hotplug +++ b/package/firewall/files/firewall.hotplug @@ -6,7 +6,7 @@ [ "$DEVICE" == "lo" ] && exit 0 -. /etc/functions.sh +. /lib/functions.sh . /lib/firewall/core.sh fw_init |