summaryrefslogtreecommitdiffstats
path: root/loader2/nfsinstall.c
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2005-01-25 20:20:01 +0000
committerPeter Jones <pjones@redhat.com>2005-01-25 20:20:01 +0000
commitdbf7c3b8b5e79cc2aef3cbdd4023765fd1419b7a (patch)
tree5fc97e9759ebb1a0f9effb5e6fa2bea347bcfbd2 /loader2/nfsinstall.c
parent8fde12254a3fe1df1c960ef2d69c5e6c7ff890a2 (diff)
downloadanaconda-dbf7c3b8b5e79cc2aef3cbdd4023765fd1419b7a.tar.gz
anaconda-dbf7c3b8b5e79cc2aef3cbdd4023765fd1419b7a.tar.xz
anaconda-dbf7c3b8b5e79cc2aef3cbdd4023765fd1419b7a.zip
* loader2/method.c: make validIsoImages check the buildstamp and report
back if it found invalid entries. * loader2/method.h: update prototype for validIsoImages * loader2/hdinstall.c: call validIsoImages() with foundinvalid = 0 * loader2/nfsinstall.c: pass the address of foundinvalid to validIsoImages * update anaconda.spec
Diffstat (limited to 'loader2/nfsinstall.c')
-rw-r--r--loader2/nfsinstall.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/loader2/nfsinstall.c b/loader2/nfsinstall.c
index e0e2da14d..9b5d5593e 100644
--- a/loader2/nfsinstall.c
+++ b/loader2/nfsinstall.c
@@ -156,7 +156,8 @@ char * mountNfsImage(struct installMethod * method,
logMessage("unable to access %s", mntPath);
}
- if ((path = validIsoImages("/mnt/source"))) {
+ if ((path = validIsoImages("/mnt/source", &foundinvalid))) {
+ foundinvalid = 0;
logMessage("Path to valid iso is %s", path);
copyUpdatesImg("/mnt/source/updates.img");