diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-06-11 10:16:53 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-06-11 10:16:53 +0000 |
| commit | 62c09b388a65937ae3e38fe55228be39d320a056 (patch) | |
| tree | ada319ff3b86dc8ccf8466df677a6438633575f7 | |
| parent | 824934f901ec4f34b9292769e47def6f8849178b (diff) | |
Notes
| -rw-r--r-- | release/sysinstall/install.c | 5 | ||||
| -rw-r--r-- | usr.sbin/sade/install.c | 5 | ||||
| -rw-r--r-- | usr.sbin/sysinstall/install.c | 5 |
3 files changed, 9 insertions, 6 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c index 16ff83c755d6..d8e0ec50f8a5 100644 --- a/release/sysinstall/install.c +++ b/release/sysinstall/install.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: install.c,v 1.97 1996/05/16 11:47:30 jkh Exp $ + * $Id: install.c,v 1.98 1996/05/29 01:35:28 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -388,11 +388,12 @@ installNovice(dialogMenuItem *self) "may do so by typing: /stand/sysinstall."); if (mediaDevice->type != DEVICE_TYPE_FTP && mediaDevice->type != DEVICE_TYPE_NFS) { - if (!msgYesNo("Would you like to configure this machine's network interfaces?")) { + if (!msgYesNo("Does this system have a network interface card?")) { Device *save = mediaDevice; /* This will also set the media device, which we don't want */ tcpDeviceSelect(); + /* so we restore our saved value below */ mediaDevice = save; dialog_clear(); } diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c index 16ff83c755d6..d8e0ec50f8a5 100644 --- a/usr.sbin/sade/install.c +++ b/usr.sbin/sade/install.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: install.c,v 1.97 1996/05/16 11:47:30 jkh Exp $ + * $Id: install.c,v 1.98 1996/05/29 01:35:28 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -388,11 +388,12 @@ installNovice(dialogMenuItem *self) "may do so by typing: /stand/sysinstall."); if (mediaDevice->type != DEVICE_TYPE_FTP && mediaDevice->type != DEVICE_TYPE_NFS) { - if (!msgYesNo("Would you like to configure this machine's network interfaces?")) { + if (!msgYesNo("Does this system have a network interface card?")) { Device *save = mediaDevice; /* This will also set the media device, which we don't want */ tcpDeviceSelect(); + /* so we restore our saved value below */ mediaDevice = save; dialog_clear(); } diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 16ff83c755d6..d8e0ec50f8a5 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/sysinstall/install.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: install.c,v 1.97 1996/05/16 11:47:30 jkh Exp $ + * $Id: install.c,v 1.98 1996/05/29 01:35:28 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -388,11 +388,12 @@ installNovice(dialogMenuItem *self) "may do so by typing: /stand/sysinstall."); if (mediaDevice->type != DEVICE_TYPE_FTP && mediaDevice->type != DEVICE_TYPE_NFS) { - if (!msgYesNo("Would you like to configure this machine's network interfaces?")) { + if (!msgYesNo("Does this system have a network interface card?")) { Device *save = mediaDevice; /* This will also set the media device, which we don't want */ tcpDeviceSelect(); + /* so we restore our saved value below */ mediaDevice = save; dialog_clear(); } |
