diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-04-28 00:37:38 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-04-28 00:37:38 +0000 |
| commit | ba67e870cbc80aafbc0342a4c5d7bd70aadb11f9 (patch) | |
| tree | 0307af9337b282b1a89c65dc03255a7be7559a9c /release/sysinstall/tcpip.c | |
| parent | cce80494f9158ba7dec3b69090032e0a36abd48f (diff) | |
Notes
Diffstat (limited to 'release/sysinstall/tcpip.c')
| -rw-r--r-- | release/sysinstall/tcpip.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/release/sysinstall/tcpip.c b/release/sysinstall/tcpip.c index fbde09af993e..1423ac4a0d38 100644 --- a/release/sysinstall/tcpip.c +++ b/release/sysinstall/tcpip.c @@ -1,5 +1,5 @@ /* - * $Id: tcpip.c,v 1.35 1996/04/13 13:32:12 jkh Exp $ + * $Id: tcpip.c,v 1.36 1996/04/23 01:29:35 jkh Exp $ * * Copyright (c) 1995 * Gary J Palmer. All rights reserved. @@ -545,6 +545,9 @@ tcpDeviceSelect(void) /* If we're running in user mode, assume network already up */ if (RunningAsInit) tcpOpenDialog(devs[0]); + else + msgConfirm("Since you're running multi-user, we'll assume\n" + "that the network is already up."); mediaDevice = devs[0]; status = TRUE; } @@ -564,5 +567,5 @@ tcpMenuSelect(dialogMenuItem *self) { (void)tcpDeviceSelect(); configResolv(); - return DITEM_SUCCESS; + return DITEM_SUCCESS | DITEM_RECREATE | DITEM_RESTORE; } |
