From 2fdb12ea191206861f3cd9bf3a0d8ba85dd96aae Mon Sep 17 00:00:00 2001 From: jkh Date: Wed, 1 Sep 1999 04:29:30 +0000 Subject: MFC: Catch 3.2-stable sysinstall up to 4.0-current level functionality, bringing in DHCP support. The only thing I left out were Poul-Henning's newfs changes since I'm not sure if he's brought the rest of that support into -stable yet. If it turns out that this is the case, I'll MFC those changes too. --- usr.sbin/sysinstall/media.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'usr.sbin/sysinstall/media.c') diff --git a/usr.sbin/sysinstall/media.c b/usr.sbin/sysinstall/media.c index 380b704..59274e9 100644 --- a/usr.sbin/sysinstall/media.c +++ b/usr.sbin/sysinstall/media.c @@ -409,8 +409,7 @@ mediaSetFTP(dialogMenuItem *self) return DITEM_FAILURE | what; } } - if (isDebug()) - msgDebug("Found DNS entry for %s successfully..\n", hostname); + msgDebug("Found DNS entry for %s successfully..\n", hostname); } variable_set2(VAR_FTP_HOST, hostname, 0); variable_set2(VAR_FTP_DIR, dir ? dir : "/", 0); @@ -511,10 +510,8 @@ mediaSetNFS(dialogMenuItem *self) variable_unset(VAR_NFS_PATH); return DITEM_FAILURE; } - else { - if (isDebug()) - msgDebug("Found DNS entry for %s successfully..", hostname); - } + else + msgDebug("Found DNS entry for %s successfully..", hostname); } variable_set2(VAR_NFS_HOST, hostname, 0); nfsDevice.type = DEVICE_TYPE_NFS; -- cgit v1.1