summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/msg.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-05-20 07:50:20 +0000
committerjkh <jkh@FreeBSD.org>1995-05-20 07:50:20 +0000
commitb699cf290d2084f1a2dce3d0c923fde49a56521a (patch)
treeb8b81b26e19c06c930f2f9a1814ecec2f482fc6e /usr.sbin/sysinstall/msg.c
parent93e4bfbb6bdeda3635c352e51d6cae5888807166 (diff)
downloadFreeBSD-src-b699cf290d2084f1a2dce3d0c923fde49a56521a.zip
FreeBSD-src-b699cf290d2084f1a2dce3d0c923fde49a56521a.tar.gz
Correct a few wording bogons in the menus.
Make notify NOT wipe the dialog off right after putting it up. Whoops. Kinda defeated the purpose! :-)
Diffstat (limited to 'usr.sbin/sysinstall/msg.c')
-rw-r--r--usr.sbin/sysinstall/msg.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.sbin/sysinstall/msg.c b/usr.sbin/sysinstall/msg.c
index d5af5a6..40bf879 100644
--- a/usr.sbin/sysinstall/msg.c
+++ b/usr.sbin/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);
}
OpenPOWER on IntegriCloud