diff options
author | Erik Troan <ewt@redhat.com> | 1999-08-31 14:24:46 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-08-31 14:24:46 +0000 |
commit | 6e3c0750476981cd881d5803858d2da9f2068b9c (patch) | |
tree | 4c8bd4bc0cb32a4819eaff5a3c23cb45e40739ad /loader | |
parent | c1087e44eb08875a6c93c43fb4e6ea2b51e44b2c (diff) | |
download | anaconda-6e3c0750476981cd881d5803858d2da9f2068b9c.tar.gz anaconda-6e3c0750476981cd881d5803858d2da9f2068b9c.tar.xz anaconda-6e3c0750476981cd881d5803858d2da9f2068b9c.zip |
fixed back button in cdrom error screens
Diffstat (limited to 'loader')
-rw-r--r-- | loader/loader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/loader.c b/loader/loader.c index 8f802d057..20e8fc79f 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -688,10 +688,10 @@ static char * setupCdrom(struct installMethod * method, _("I could not find a Red Hat Linux " "CDROM in any of your CDROM drives. Please insert " "the Red Hat CD and press \"Ok\" to retry.")); - if (rc == LOADER_BACK) return NULL; + if (rc == 2) return NULL; } else { rc = setupCDdevice(kd, modInfo, modLoaded, modDeps, flags); - if (rc == LOADER_BACK) return NULL; + if (rc == 2) return NULL; } } while (1); |