From: Mike Baker Date: Tue, 13 Apr 2004 04:41:19 +0000 (+0000) Subject: oops, if -> type X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=baa375c98a0c993f8ad26686d40a055620b42e51;p=15.05%2Fopenwrt.git 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 6eb967b14c..74e0023296 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 ;;