summaryrefslogtreecommitdiff
path: root/usr.sbin/dhcp
diff options
context:
space:
mode:
authorTodd T. Fries <todd@cvs.openbsd.org>2000-10-18 23:42:57 +0000
committerTodd T. Fries <todd@cvs.openbsd.org>2000-10-18 23:42:57 +0000
commitf5bffca0ee664aba6fa45733d44895f87fb3a8eb (patch)
treecdb1006001a876384f4714c81eba3d4573bae12c /usr.sbin/dhcp
parent186fd572b23253eea18bfb01cc4892cc67d209c0 (diff)
this was overlooked in the last commit. ok beck@.
Diffstat (limited to 'usr.sbin/dhcp')
-rw-r--r--usr.sbin/dhcp/dhclient/scripts/dhclient-script4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/dhcp/dhclient/scripts/dhclient-script b/usr.sbin/dhcp/dhclient/scripts/dhclient-script
index dca1839ff33..6dc23ba72e5 100644
--- a/usr.sbin/dhcp/dhclient/scripts/dhclient-script
+++ b/usr.sbin/dhcp/dhclient/scripts/dhclient-script
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $OpenBSD: dhclient-script,v 1.10 2000/10/18 23:29:20 todd Exp $
+# $OpenBSD: dhclient-script,v 1.11 2000/10/18 23:42:56 todd Exp $
#
if [ "x$new_network_number" != "x" ]; then
@@ -81,7 +81,7 @@ if [ "x$reason" = "xBOUND" ] || [ "x$reason" = "xRENEW" ] || \
if [ -n "$new_domain_name_servers" ];
then
echo "search $new_domain_name" >/etc/resolv.conf
- for nameserver in "$new_domain_name_servers"; do
+ for nameserver in $new_domain_name_servers; do
echo nameserver $nameserver >>/etc/resolv.conf
done
if [ -f /etc/resolv.conf.tail ]; then