diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1999-07-22 08:51:42 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1999-07-22 08:51:42 +0000 |
| commit | 5bc001833fbdb47d6b7fa48467b9e8812d5ef3da (patch) | |
| tree | b3329f7294fbaf6db2af5b8744af702a4e1e9386 | |
| parent | aa30608b447bd8fc2b1325b61ae37718f64e934c (diff) | |
Notes
| -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 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); diff --git a/usr.sbin/sysinstall/tcpip.c b/usr.sbin/sysinstall/tcpip.c index ffa2f0568ea0f..d6a3d84a15dcb 100644 --- a/usr.sbin/sysinstall/tcpip.c +++ b/usr.sbin/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); |
