Fix the braindamage I somehow inflicted on this file early this morning.

This commit is contained in:
Jordan K. Hubbard 1995-05-26 17:28:00 +00:00
parent b9643b6695
commit 048999e640
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8765

View File

@ -211,22 +211,15 @@ install_batch(void)
use_helpfile(DS_INSTALL_HLP);
quit = FALSE;
while (!quit) {
if (StartDir) {
use_helpline("Select directory where the pkg's reside");
if (dialog_dselect(".", "*.tgz")) {
quit = TRUE;
} else {
if (StartDir)
install_pkgs_indir();
}
else {
use_helpline("Select directory where the pkg's reside");
if (dialog_dselect(".", "*.tgz")) {
quit = TRUE;
} else {
install_pkgs_indir();
}
use_helpline("Select directory where the pkg's reside");
if (dialog_dselect(".", "*.tgz"))
quit = TRUE;
else
install_pkgs_indir();
}
}
return;
} /* install_batch() */