From: mbm Date: Tue, 13 Apr 2004 04:41:19 +0000 (+0000) Subject: oops, if -> type X-Git-Url: http://git.rohieb.name/openwrt.git/commitdiff_plain/cbff0d85f54798614fd13fa34c147d457dc8b322?hp=15f61ce088e6eb642caf493bfb7951abd3a87765 oops, if -> type git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/root/etc/networking.sh b/root/etc/networking.sh index 6eb967b14..74e002329 100755 --- a/root/etc/networking.sh +++ b/root/etc/networking.sh @@ -90,7 +90,7 @@ configure () { [ -f /etc/resolv.conf ] && return echo "# --- creating /etc/resolv.conf ---" - for dns in $(nvram_get ${if}_dns); do { + for dns in $(nvram_get ${type}_dns); do { echo "nameserver $dns" >> /etc/resolv.conf }; done ;;