summaryrefslogtreecommitdiff
path: root/release/sysinstall/network.c
diff options
context:
space:
mode:
Diffstat (limited to 'release/sysinstall/network.c')
-rw-r--r--release/sysinstall/network.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/release/sysinstall/network.c b/release/sysinstall/network.c
index a20e5614ab2c9..7dde08df8252b 100644
--- a/release/sysinstall/network.c
+++ b/release/sysinstall/network.c
@@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
- * $Id: network.c,v 1.32 1998/10/01 19:26:02 msmith Exp $
+ * $Id: network.c,v 1.31 1998/07/12 17:11:53 brian Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -58,15 +58,9 @@ mediaInitNetwork(Device *dev)
if (!RunningAsInit || networkInitialized)
return TRUE;
- if (isDebug())
- msgDebug("Init routine called for network device %s.\n", dev->name);
-
- if (!file_readable("/etc/resolv.conf")) {
- if (DITEM_STATUS(configResolv(NULL)) == DITEM_FAILURE) {
- msgConfirm("Can't seem to write out /etc/resolv.conf. Net cannot be used.");
- return FALSE;
- }
- }
+ msgDebug("Init routine called for network device %s.\n", dev->name);
+ if (!file_readable("/etc/resolv.conf"))
+ configResolv();
/* Old PPP process lying around? */
if (pppPID) {