diff options
author | Mike Fulbright <msf@redhat.com> | 2002-08-27 19:07:52 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-08-27 19:07:52 +0000 |
commit | d85a0004768f484f4aa626042512e654e991fab1 (patch) | |
tree | fe2182ffe1cbf8dfea83157ab29c1adc7982d52d /loader | |
parent | a6226df6a02f3292216808d128a5864e15270579 (diff) | |
download | anaconda-d85a0004768f484f4aa626042512e654e991fab1.tar.gz anaconda-d85a0004768f484f4aa626042512e654e991fab1.tar.xz anaconda-d85a0004768f484f4aa626042512e654e991fab1.zip |
i broke something real good
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 843d3c1d0..0bea23c59 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -3768,8 +3768,8 @@ int main(int argc, char ** argv) { /* only use RHupdates if we're NFS, otherwise we'll use files on */ /* the first ISO image and we won't be able to umount it */ useRHupdates = 0; - if (strncmp(url, "nfs:", 4)) { - logMessage("NFS install method detectde, will use RHupdates/"); + if (!strncmp(url, "nfs:", 4)) { + logMessage("NFS install method detected, will use RHupdates/"); useRHupdates = 1; } |