summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-01-04 21:59:01 +0000
committerMatt Wilson <msw@redhat.com>2000-01-04 21:59:01 +0000
commitf943787f0608966aa0d106382eb495638eb0313c (patch)
tree748b9315d962d95cc8fab292a1b34613c8edcaf4
parent693da6c44321c65336e471cf10d8c62479e3e1f2 (diff)
downloadanaconda-f943787f0608966aa0d106382eb495638eb0313c.tar.gz
anaconda-f943787f0608966aa0d106382eb495638eb0313c.tar.xz
anaconda-f943787f0608966aa0d106382eb495638eb0313c.zip
add ':' after transport type
-rw-r--r--loader/loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/loader.c b/loader/loader.c
index 8a4097e76..5913a9489 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -980,7 +980,7 @@ static char * mountUrlImage(struct installMethod * method,
}
url = malloc(strlen(ui.prefix) + 25 + strlen(ui.address));
- sprintf(url, "%s//%s/%s",
+ sprintf(url, "%s://%s/%s",
ui.protocol == URL_METHOD_FTP ? "ftp" : "http",
ui.address, ui.prefix);