diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-04-13 13:32:15 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-04-13 13:32:15 +0000 |
| commit | af4cbec4e16d37d704bd9f82a86f7f52cd278a15 (patch) | |
| tree | 75fa9d1786ffde4deed82bc4bb5c8264228a2aca /release/sysinstall/system.c | |
| parent | 61220614a864ec6170035f34a56530e5645d00b6 (diff) | |
Notes
Diffstat (limited to 'release/sysinstall/system.c')
| -rw-r--r-- | release/sysinstall/system.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/release/sysinstall/system.c b/release/sysinstall/system.c index 3622f90b17b6..14f125a9e304 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.48 1996/03/18 15:28:08 jkh Exp $ + * $Id: system.c,v 1.49 1996/03/21 09:30:17 jkh Exp $ * * Jordan Hubbard * @@ -129,21 +129,17 @@ systemDisplayHelp(char *file) snprintf(buf, FILENAME_MAX, "The %s file is not provided on this particular floppy image.", file); use_helpfile(NULL); use_helpline(NULL); - w = dupwin(newscr); + w = savescr(); dialog_mesgbox("Sorry!", buf, -1, -1); - touchwin(w); - wrefresh(w); - delwin(w); + restorescr(w); return 1; } else { use_helpfile(NULL); use_helpline(NULL); - w = dupwin(newscr); + w = savescr(); dialog_textbox(file, fname, LINES, COLS); - touchwin(w); - wrefresh(w); - delwin(w); + restorescr(w); } return 0; } |
