summaryrefslogtreecommitdiffstats
path: root/loader2/urlinstall.c
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-03-10 17:35:48 -0400
committerChris Lumens <clumens@redhat.com>2008-03-10 17:35:48 -0400
commitabf26e1ef526c51bb38d3d6669e3b8d4d08c4f2f (patch)
treeb573517d0755f469092a9d9f9d7b8d1902b0260e /loader2/urlinstall.c
parent8532f4960f6e8da5d871bee929c35ff9a5f1f7b2 (diff)
downloadanaconda-abf26e1ef526c51bb38d3d6669e3b8d4d08c4f2f.tar.gz
anaconda-abf26e1ef526c51bb38d3d6669e3b8d4d08c4f2f.tar.xz
anaconda-abf26e1ef526c51bb38d3d6669e3b8d4d08c4f2f.zip
Use the full path to the .discinfo file (#436855).
Diffstat (limited to 'loader2/urlinstall.c')
-rw-r--r--loader2/urlinstall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader2/urlinstall.c b/loader2/urlinstall.c
index 835ec2854..c0166188a 100644
--- a/loader2/urlinstall.c
+++ b/loader2/urlinstall.c
@@ -276,7 +276,7 @@ char * mountUrlImage(struct installMethod * method,
if (cdurl) {
/* verify that our URL is specifying the correct tree */
/* we do this by attempting to pull a .discinfo file */
- rc = asprintf(&buf, "%s/.discinfo", ui.address);
+ rc = asprintf(&buf, "%s/%s/.discinfo", ui.address, ui.prefix);
if (loadSingleUrlImage(&ui, buf, NULL, NULL, NULL, 1)) {
free(buf);
umountStage2();