From c21d85017929f74c4427b421d5d7699763bcf3e5 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Mon, 24 Oct 1994 03:55:25 +0000 Subject: [PATCH] Clear screen on exit per Paul request --- sbin/sysinstall/utils.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sbin/sysinstall/utils.c b/sbin/sysinstall/utils.c index d7f07787b3af..16f296482619 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.9 1994/10/22 02:35:09 ache Exp $ + * $Id: utils.c,v 1.10 1994/10/22 02:37:24 ache Exp $ * */ @@ -91,11 +91,11 @@ Abort() void ExitSysinstall() { + if (dialog_active) { + clear(); + dialog_update(); + } if (getpid() == 1) { - if (dialog_active) { - clear(); - dialog_update(); - } if (reboot(RB_AUTOBOOT) == -1) if (dialog_active) { clear(); @@ -106,8 +106,8 @@ ExitSysinstall() while(1); } else { if (dialog_active) { - dialog_update(); end_dialog(); + dialog_active = 0; } exit(0); }