summaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/msg.c
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 /usr.sbin/sysinstall/msg.c
parent3492f770dbac8095959a29a7ae1c57ac5a4ef543 (diff)
Notes
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 d5af5a6d2134..40bf8790a01a 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);
}