aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/msg.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-05-20 13:24:35 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-05-20 13:24:35 +0000
commit6387e9b0581895d0d82d4c401e531c634cb0d6e4 (patch)
tree0c067b1e3b7015ba4061838cd2ab4551209719ea /usr.sbin/sysinstall/msg.c
parent7b74963e46e8c56082d39150604af0404a67f486 (diff)
downloadsrc-6387e9b0581895d0d82d4c401e531c634cb0d6e4.tar.gz
src-6387e9b0581895d0d82d4c401e531c634cb0d6e4.zip
Clear the screen on msgNotifys.
Don't notify in vsystem() - it obscures the original message. Put some debugging code into cpio_extract() so that I can see why it doesn't work now. :(
Notes
Notes: svn path=/head/; revision=8645
Diffstat (limited to 'usr.sbin/sysinstall/msg.c')
-rw-r--r--usr.sbin/sysinstall/msg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/msg.c b/usr.sbin/sysinstall/msg.c
index 5acd662f5765..ccfaff6b35cd 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.17 1995/05/20 08:31:42 jkh Exp $
+ * $Id: msg.c,v 1.18 1995/05/20 10:33:10 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -210,6 +210,7 @@ msgNotify(char *fmt, ...)
use_helpfile(NULL);
msgDebug("Notify: %s\n", errstr);
dialog_msgbox("Information Dialog", errstr, -1, -1, 0);
+ dialog_clear();
free(errstr);
}