diff options
author | John Crispin <blogic@openwrt.org> | 2008-08-20 11:45:23 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2008-08-20 11:45:23 +0000 |
commit | da1b42031e8078456d3252865bfe0c5408095c54 (patch) | |
tree | 3ec8fa95caca2ae9607cd0da9e1036699a9e60d7 | |
parent | c7e9e064b1423d63b96c9e1b9d53e385fa1a7e97 (diff) | |
download | upstream-da1b42031e8078456d3252865bfe0c5408095c54.tar.gz upstream-da1b42031e8078456d3252865bfe0c5408095c54.tar.bz2 upstream-da1b42031e8078456d3252865bfe0c5408095c54.zip |
fixes variables, oops
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12344 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | package/base-files/files/lib/network/config.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 52e50b17ec..dfee674915 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -143,7 +143,7 @@ set_interface_ifname() { } setup_interface_none() { - env -i ACTION="ifup" INTERFACE="$config" DEVICE="$iface" PROTO=none /sbin/hotplug-call "iface" & + env -i ACTION="ifup" INTERFACE="$2" DEVICE="$1" PROTO=none /sbin/hotplug-call "iface" & } setup_interface_static() { |