Clear screen on exit per Paul request

This commit is contained in:
Andrey A. Chernov 1994-10-24 03:55:25 +00:00
parent 016d299205
commit c21d850179
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3824

View File

@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * 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 void
ExitSysinstall() ExitSysinstall()
{ {
if (dialog_active) {
clear();
dialog_update();
}
if (getpid() == 1) { if (getpid() == 1) {
if (dialog_active) {
clear();
dialog_update();
}
if (reboot(RB_AUTOBOOT) == -1) if (reboot(RB_AUTOBOOT) == -1)
if (dialog_active) { if (dialog_active) {
clear(); clear();
@ -106,8 +106,8 @@ ExitSysinstall()
while(1); while(1);
} else { } else {
if (dialog_active) { if (dialog_active) {
dialog_update();
end_dialog(); end_dialog();
dialog_active = 0;
} }
exit(0); exit(0);
} }