summaryrefslogtreecommitdiffstats
path: root/loader/loader.c
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-24 15:59:02 +0000
committerMatt Wilson <msw@redhat.com>1999-09-24 15:59:02 +0000
commit295c9d9b81ea1a7d36a7685e6f06673a73ce3f38 (patch)
tree8c205f0481aa35ee16b9d45b6f96a0bde627f6d8 /loader/loader.c
parent68ff68fc176cf4cf1c4a67b53107d82496b95018 (diff)
downloadanaconda-295c9d9b81ea1a7d36a7685e6f06673a73ce3f38.tar.gz
anaconda-295c9d9b81ea1a7d36a7685e6f06673a73ce3f38.tar.xz
anaconda-295c9d9b81ea1a7d36a7685e6f06673a73ce3f38.zip
fixed a couple of back buttons
Diffstat (limited to 'loader/loader.c')
-rw-r--r--loader/loader.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/loader/loader.c b/loader/loader.c
index af953df17..6fedaa961 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -719,7 +719,7 @@ static char * setupCdrom(struct installMethod * method,
if (rc == 2) return NULL;
} else {
rc = setupCDdevice(kd, modInfo, modLoaded, modDeps, flags);
- if (rc == 2) return NULL;
+ if (rc == LOADER_BACK) return NULL;
}
} while (1);
@@ -1071,7 +1071,7 @@ static char * doMountImage(char * location,
30, 10, 20, 6, installNames,
&methodNum, _("OK"), _("Back"), NULL);
if (rc && rc != 1)
- step = STEP_LANG;
+ step = STEP_KBD;
else
step = STEP_URL;
break;
@@ -1694,7 +1694,6 @@ int main(int argc, char ** argv) {
devLoadDriverDisk(modInfo, modLoaded, modDeps, flags, 1);
}
-
busProbe(modInfo, modLoaded, modDeps, probeOnly, &kd, flags);
if (probeOnly) exit(0);