mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-13 20:42:58 +02:00
installer: Fix filesystem selection.
When the user selected the OK button, the installation aborted instead of continuing.
This commit is contained in:
@@ -523,7 +523,7 @@ int main(int argc, char *argv[]) {
|
||||
rc = newtWinMenu(_("Filesystem Selection"), _("Please choose your filesystem:"),
|
||||
50, 5, 5, 6, fs_names, &fs_choice, _("OK"), _("Cancel"), NULL);
|
||||
|
||||
if (rc != 1)
|
||||
if (rc == 2)
|
||||
goto EXIT;
|
||||
|
||||
destination->filesystem = filesystems[fs_choice].fstype;
|
||||
|
||||
Reference in New Issue
Block a user