diff options
author | jkh <jkh@FreeBSD.org> | 1999-05-06 11:05:19 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1999-05-06 11:05:19 +0000 |
commit | 1e04321d77d84881e6392ebd9a86d0cb18a008fc (patch) | |
tree | d9f1f01f11d062e7ec6b5d3ea6acf900f2a8ad27 | |
parent | d6a2e062bc5598054488b210d5c0f3de33e90277 (diff) | |
download | FreeBSD-src-1e04321d77d84881e6392ebd9a86d0cb18a008fc.zip FreeBSD-src-1e04321d77d84881e6392ebd9a86d0cb18a008fc.tar.gz |
Argh, those last two commits snuck in with the other one by mistake.
Disable the non-working dhcp client code I just committed by mistake.
-rw-r--r-- | release/sysinstall/tcpip.c | 4 | ||||
-rw-r--r-- | usr.sbin/sysinstall/tcpip.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/release/sysinstall/tcpip.c b/release/sysinstall/tcpip.c index 27a60d1..d8e5f55 100644 --- a/release/sysinstall/tcpip.c +++ b/release/sysinstall/tcpip.c @@ -1,5 +1,5 @@ /* - * $Id: tcpip.c,v 1.75 1999/02/05 22:15:52 jkh Exp $ + * $Id: tcpip.c,v 1.76 1999/05/06 11:03:18 jkh Exp $ * * Copyright (c) 1995 * Gary J Palmer. All rights reserved. @@ -167,6 +167,7 @@ tcpOpenDialog(Device *devp) else { /* See if there are any defaults */ char *cp; +#ifdef notdef /* This is just a test stub which doesn't work yet either */ /* First try a DHCP scan */ msgNotify("Scanning for DHCP servers..."); Mkdir("/var/db"); @@ -176,6 +177,7 @@ tcpOpenDialog(Device *devp) } else msgConfirm("Unsuccessful return from dhclient"); +#endif /* Get old IP address from variable space, if available */ if (!ipaddr[0]) { diff --git a/usr.sbin/sysinstall/tcpip.c b/usr.sbin/sysinstall/tcpip.c index 27a60d1..d8e5f55 100644 --- a/usr.sbin/sysinstall/tcpip.c +++ b/usr.sbin/sysinstall/tcpip.c @@ -1,5 +1,5 @@ /* - * $Id: tcpip.c,v 1.75 1999/02/05 22:15:52 jkh Exp $ + * $Id: tcpip.c,v 1.76 1999/05/06 11:03:18 jkh Exp $ * * Copyright (c) 1995 * Gary J Palmer. All rights reserved. @@ -167,6 +167,7 @@ tcpOpenDialog(Device *devp) else { /* See if there are any defaults */ char *cp; +#ifdef notdef /* This is just a test stub which doesn't work yet either */ /* First try a DHCP scan */ msgNotify("Scanning for DHCP servers..."); Mkdir("/var/db"); @@ -176,6 +177,7 @@ tcpOpenDialog(Device *devp) } else msgConfirm("Unsuccessful return from dhclient"); +#endif /* Get old IP address from variable space, if available */ if (!ipaddr[0]) { |