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 | 9ae901445be2f33658142e401556818edbafaaf7 (patch) | |
tree | d8595eead1ed3c62440f17d6398343a1029a5be6 /package/firewall/files | |
parent | 9a61b249c5a355ce95747200302e353a0d30bea0 (diff) | |
download | upstream-9ae901445be2f33658142e401556818edbafaaf7.tar.gz upstream-9ae901445be2f33658142e401556818edbafaaf7.tar.bz2 upstream-9ae901445be2f33658142e401556818edbafaaf7.zip |
/etc/functions.sh => /lib/functions.sh
SVN-Revision: 32062
Diffstat (limited to 'package/firewall/files')
-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 |