From: Felix Fietkau Date: Fri, 4 Aug 2006 09:50:11 +0000 (+0000) Subject: fix ppp related bug in the network scripts X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=b858ed4dbae8d5f47a52631ca20a1d681300f029;p=15.05%2Fopenwrt.git 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 --- diff --git a/package/base-files/default/lib/network/config.sh b/package/base-files/default/lib/network/config.sh index 76db09de15..163e42e800 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