diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-08-04 09:50:11 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-08-04 09:50:11 +0000 |
commit | 3692c8f246d2c2e5b5e203d791c6a4ac07593d9f (patch) | |
tree | d69b86ed6fd2a87e1893ff65414175137f51dcf8 /package/base-files/default/lib | |
parent | 5d099491cf5469749a3961291b621429aeee0070 (diff) |
fix ppp related bug in the network scripts
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4437 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/default/lib')
-rwxr-xr-x | package/base-files/default/lib/network/config.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/default/lib/network/config.sh b/package/base-files/default/lib/network/config.sh index 76db09de1..163e42e80 100755 --- a/package/base-files/default/lib/network/config.sh +++ b/package/base-files/default/lib/network/config.sh @@ -13,7 +13,8 @@ find_config() { config_get iface "$ifn" ifnames ;; esac - for ifc in $iface; do + config_get device "$ifn" device + for ifc in ${device:-iface}; do [ "$ifc" = "$1" ] && { echo "$ifn" return 0 |