diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2006-08-19 14:45:14 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2006-08-19 14:45:14 +0000 |
| commit | f070135a8decd22667bd6bd03cfb0a76989dda15 (patch) | |
| tree | ab62d65a06dbf140de5eee2352adc5ae2e55e79c | |
| parent | 109039c248f2595aabb8e952d917a8d8ba082611 (diff) | |
| download | mtk-20170518-f070135a8decd22667bd6bd03cfb0a76989dda15.zip mtk-20170518-f070135a8decd22667bd6bd03cfb0a76989dda15.tar.gz mtk-20170518-f070135a8decd22667bd6bd03cfb0a76989dda15.tar.bz2 | |
fix typo
SVN-Revision: 4608
| -rwxr-xr-x | openwrt/package/base-files/default/lib/network/config.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/lib/network/config.sh b/openwrt/package/base-files/default/lib/network/config.sh index 163e42e..690d799 100755 --- a/openwrt/package/base-files/default/lib/network/config.sh +++ b/openwrt/package/base-files/default/lib/network/config.sh @@ -14,7 +14,7 @@ find_config() { ;; esac config_get device "$ifn" device - for ifc in ${device:-iface}; do + for ifc in ${device:-$iface}; do [ "$ifc" = "$1" ] && { echo "$ifn" return 0 |
