diff options
author | phk <phk@FreeBSD.org> | 1994-11-07 04:53:23 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1994-11-07 04:53:23 +0000 |
commit | b726489c354291fddf860feb7bfa31978f640e51 (patch) | |
tree | b9033bf7d08a57475bd761f864ce889b608ec29a | |
parent | 233a47503dbe88f88ac984205be90f5dde5e2bb4 (diff) | |
download | FreeBSD-src-b726489c354291fddf860feb7bfa31978f640e51.zip FreeBSD-src-b726489c354291fddf860feb7bfa31978f640e51.tar.gz |
Always clear before we "TellEm()"
-rw-r--r-- | sbin/sysinstall/utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/sysinstall/utils.c b/sbin/sysinstall/utils.c index d42a03e..0e592c7 100644 --- a/sbin/sysinstall/utils.c +++ b/sbin/sysinstall/utils.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: utils.c,v 1.23 1994/11/05 07:34:02 jkh Exp $ + * $Id: utils.c,v 1.24 1994/11/05 23:09:26 ache Exp $ * */ @@ -92,6 +92,7 @@ TellEm(char *fmt, ...) write(debug_fd,"Progress <",10); write(debug_fd,p,strlen(p)); write(debug_fd,">\n\r",3); + dialog_clear(); dialog_msgbox("Progress", p, strheight(p)+2, strwidth(p)+4, 0); free(p); } |