From f943787f0608966aa0d106382eb495638eb0313c Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Tue, 4 Jan 2000 21:59:01 +0000 Subject: add ':' after transport type --- loader/loader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit