aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/dispatch.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1999-12-14 04:25:29 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1999-12-14 04:25:29 +0000
commit7025aeb16e091cf9515535424d0532b53c618b83 (patch)
treea4fa2148685a8fd9c12ca7648603d5499e521f49 /usr.sbin/sysinstall/dispatch.c
parent34fa0973611c929a22ea016ed691c4e152ba0054 (diff)
Notes
Diffstat (limited to 'usr.sbin/sysinstall/dispatch.c')
-rw-r--r--usr.sbin/sysinstall/dispatch.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.sbin/sysinstall/dispatch.c b/usr.sbin/sysinstall/dispatch.c
index 3090a2782adc9..15c6c27424c3e 100644
--- a/usr.sbin/sysinstall/dispatch.c
+++ b/usr.sbin/sysinstall/dispatch.c
@@ -381,15 +381,13 @@ dispatch_load_file(dialogMenuItem *self)
int
dispatch_load_floppy(dialogMenuItem *self)
{
- int what = DITEM_RESTORE | DITEM_SUCCESS;
+ int what = DITEM_SUCCESS;
extern char *distWanted;
char *cp;
FILE *fp;
qelement *list;
mediaClose();
- dialog_clear_norefresh();
-
cp = variable_get_value(VAR_INSTALL_CFG,
"Specify the name of a configuration file\n"
"residing on a MSDOS or UFS floppy.", 0);
@@ -430,7 +428,6 @@ dispatch_load_floppy(dialogMenuItem *self)
what |= DITEM_FAILURE;
mediaClose();
}
-
return what;
}