aboutsummaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1999-07-22 08:51:42 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1999-07-22 08:51:42 +0000
commit5bc001833fbdb47d6b7fa48467b9e8812d5ef3da (patch)
treeb3329f7294fbaf6db2af5b8744af702a4e1e9386 /release
parentaa30608b447bd8fc2b1325b61ae37718f64e934c (diff)
Notes
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/tcpip.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/sysinstall/tcpip.c b/release/sysinstall/tcpip.c
index ffa2f0568ea0f..d6a3d84a15dcb 100644
--- a/release/sysinstall/tcpip.c
+++ b/release/sysinstall/tcpip.c
@@ -1,5 +1,5 @@
/*
- * $Id: tcpip.c,v 1.84 1999/07/19 10:18:52 jkh Exp $
+ * $Id: tcpip.c,v 1.85 1999/07/19 11:00:56 jkh Exp $
*
* Copyright (c) 1995
* Gary J Palmer. All rights reserved.
@@ -384,9 +384,11 @@ netconfig:
di->use_dhcp = use_dhcp;
sprintf(ifn, "%s%s", VAR_IFCONFIG, devp->name);
+#ifdef notyet /* XXX this will only work once bpf is a loadable kernel mod */
if (use_dhcp)
sprintf(temp, "DHCP");
else
+#endif
sprintf(temp, "inet %s %s netmask %s", ipaddr, extras, netmask);
variable_set2(ifn, temp, 1);
ifaces = variable_get(VAR_INTERFACES);