summaryrefslogtreecommitdiffstats
path: root/release/sysinstall/system.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-05-20 13:24:35 +0000
committerjkh <jkh@FreeBSD.org>1995-05-20 13:24:35 +0000
commitd27bb5a137d8b403eef67dccb6134514c03cd7eb (patch)
tree0c067b1e3b7015ba4061838cd2ab4551209719ea /release/sysinstall/system.c
parent055f32000d36d17d799c0e3e14b7bc82e17f4426 (diff)
downloadFreeBSD-src-d27bb5a137d8b403eef67dccb6134514c03cd7eb.zip
FreeBSD-src-d27bb5a137d8b403eef67dccb6134514c03cd7eb.tar.gz
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. :(
Diffstat (limited to 'release/sysinstall/system.c')
-rw-r--r--release/sysinstall/system.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/sysinstall/system.c b/release/sysinstall/system.c
index e1a7ded..28efd39 100644
--- a/release/sysinstall/system.c
+++ b/release/sysinstall/system.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: system.c,v 1.20 1995/05/19 21:30:35 jkh Exp $
+ * $Id: system.c,v 1.21 1995/05/20 08:31:43 jkh Exp $
*
* Jordan Hubbard
*
@@ -295,7 +295,7 @@ vsystem(char *fmt, ...)
vsnprintf(cmd, FILENAME_MAX, fmt, args);
va_end(args);
omask = sigblock(sigmask(SIGCHLD));
- msgNotify("Executing command: %s", cmd);
+ msgDebug("Executing command `%s'", cmd);
switch(pid = vfork()) {
case -1: /* error */
(void)sigsetmask(omask);
OpenPOWER on IntegriCloud