diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-04-23 01:29:35 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-04-23 01:29:35 +0000 |
commit | 2113a60c4bd5fead694c80128f2ab2b7f9dc2333 (patch) | |
tree | 61dd517d68f78c02b32b70a1ec457f1509801e87 /release/sysinstall/tape.c | |
parent | 5553e30b4807af6bb735f8dc0ffd12b2766dd9f7 (diff) |
Bring this into sync.
I still have a _very very annoying_ display bug which occurs when a menu
item causes a submenu to be displayed - the screen repaints for the original
menu (which is restored upon return from the submenu) are off by about 4
characters. I've tried restoring the screen, the cursor position, you name
it - same deal. Grrrr! This commit is my first step in trying to get someone
else to help me look into this one since I'm just tearing my hair out at this
point!
Notes
Notes:
svn path=/head/; revision=15355
Diffstat (limited to 'release/sysinstall/tape.c')
-rw-r--r-- | release/sysinstall/tape.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/release/sysinstall/tape.c b/release/sysinstall/tape.c index abafe811eaad..166c7864c2dc 100644 --- a/release/sysinstall/tape.c +++ b/release/sysinstall/tape.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated to essentially a complete rewrite. * - * $Id: tape.c,v 1.9 1996/03/02 07:31:57 jkh Exp $ + * $Id: tape.c,v 1.10 1996/04/13 13:32:11 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -72,10 +72,8 @@ mediaInitTape(Device *dev) msgDebug("Tape initialized successfully.\n"); return TRUE; } - else { - dialog_clear(); + else msgConfirm("Tape extract command failed with status %d!", i); - } return FALSE; } |