aboutsummaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-05-20 07:50:20 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-05-20 07:50:20 +0000
commitdad012f2c61b9adbbdb4e5b0920e194f4d54fc45 (patch)
treeb8b81b26e19c06c930f2f9a1814ecec2f482fc6e /release
parent3492f770dbac8095959a29a7ae1c57ac5a4ef543 (diff)
Notes
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/menus.c25
-rw-r--r--release/sysinstall/msg.c7
2 files changed, 14 insertions, 18 deletions
diff --git a/release/sysinstall/menus.c b/release/sysinstall/menus.c
index cbabda4a35a1..c6c54e16bc84 100644
--- a/release/sysinstall/menus.c
+++ b/release/sysinstall/menus.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: menus.c,v 1.17 1995/05/19 16:58:56 jkh Exp $
+ * $Id: menus.c,v 1.18 1995/05/20 00:13:12 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -161,13 +161,13 @@ of the following CDROM drives as your installation drive.",
DMenu MenuMediaFloppy = {
DMENU_NORMAL_TYPE | DMENU_SELECTION_RETURNS,
"Choose a Floppy drive",
- "FreeBSD can also be installed from floppy disk media,\n\
-though not without some pain. You should have prepared your\n\
-floppy distribution media using the DOS floppy install-set\n\
-construction procedure or have otherwise prepared a set of\n\
-diskettes for each distribution that properly contains all the\n\
-components of the distribution plus the extraction and checksumming\n\
-scripts.",
+"FreeBSD can be installed from floppy disk media, though\n\
+not without some pain. You should have prepared your floppy\n\
+distribution media using the DOS floppy install-set construction\n\
+procedure (available on the FreeBSD CDROM or the net under the\n\
+tools/dos directory) or have otherwise prepared a set of diskettes\n\
+for each distribution that properly contains all the components of\n\
+the distribution plus the extraction and checksumming scripts.",
"Please select the floppy drive you want to use",
NULL,
{ { "A", "Floppy drive A", /* M */
@@ -444,8 +444,9 @@ DMenu MenuXF86SelectFonts = {
DMENU_MULTIPLE_TYPE | DMENU_SELECTION_RETURNS,
"Font distribution selection.",
"Please check off the individual font distributions you wish to\n\
-install. At the minimum, you should certainly install the standard\n\
-75 DPI and misc fonts if you're also installing a server.",
+install. At the minimum, you should install the standard\n\
+75 DPI and misc fonts if you're also installing a server\n\
+(these are selected by default).",
NULL,
NULL,
{ { "*fnts", "Standard 75 DPI and miscellaneous fonts [3.6MB]",
@@ -465,9 +466,9 @@ DMenu MenuXF86SelectServer = {
DMENU_MULTIPLE_TYPE | DMENU_SELECTION_RETURNS,
"X Server selection.",
"Please check off the types of X servers you wish to install.\n\
-If you are unsure as which server will work for your graphics card,\n\
+If you are unsure as to which server will work for your graphics card,\n\
it is recommended that try the SVGA or VGA16 servers (the VGA16 and\n\
-Mono servers are also particularly well-suited to most LCD displays).",
+Mono servers are particularly well-suited to most LCD displays).",
"xservers.hlp",
"Press F1 for more information on the various X server types",
{ { "*SVGA", "Standard VGA or Super VGA display [1MB]",
diff --git a/release/sysinstall/msg.c b/release/sysinstall/msg.c
index d5af5a6d2134..40bf8790a01a 100644
--- a/release/sysinstall/msg.c
+++ b/release/sysinstall/msg.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: msg.c,v 1.14 1995/05/19 15:56:02 jkh Exp $
+ * $Id: msg.c,v 1.15 1995/05/19 21:30:34 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -191,7 +191,6 @@ msgNotify(char *fmt, ...)
{
va_list args;
char *errstr;
- WINDOW *w;
errstr = (char *)safe_malloc(FILENAME_MAX);
va_start(args, fmt);
@@ -200,11 +199,7 @@ msgNotify(char *fmt, ...)
use_helpline(NULL);
use_helpfile(NULL);
msgDebug("Notify: %s\n", errstr);
- w = dupwin(newscr);
dialog_msgbox("Information Dialog", errstr, -1, -1, 0);
- touchwin(w);
- wrefresh(w);
- delwin(w);
free(errstr);
}