summaryrefslogtreecommitdiffstats
path: root/loader2
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-03 06:26:55 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-03 06:26:55 +0000
commitbfc05f96b29c5eeaa1cce5011821b13429f0e5b0 (patch)
tree579ef1fa8c77f9f976489835c93b2088ba75b465 /loader2
parent310f5c3faa37debd52785d94216bfddbf6e78873 (diff)
downloadanaconda-bfc05f96b29c5eeaa1cce5011821b13429f0e5b0.tar.gz
anaconda-bfc05f96b29c5eeaa1cce5011821b13429f0e5b0.tar.xz
anaconda-bfc05f96b29c5eeaa1cce5011821b13429f0e5b0.zip
make error reporting better so that people can spot their errors (#66851)
Diffstat (limited to 'loader2')
-rw-r--r--loader2/urlinstall.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/loader2/urlinstall.c b/loader2/urlinstall.c
index 08e824e6b..453b3e80c 100644
--- a/loader2/urlinstall.c
+++ b/loader2/urlinstall.c
@@ -55,8 +55,10 @@ static int loadSingleUrlImage(struct iurlinfo * ui, char * file, int flags,
if (fd < 0) {
if (!silentErrors)
newtWinMessage(_("Error"), _("OK"),
- _("File %s/%s not found on server."),
- ui->prefix, file);
+ _("Unable to retrieve %s://%s/%s/%s."),
+ (ui->protocol == URL_METHOD_FTP ? "ftp" :
+ "http"),
+ ui->address, ui->prefix, file);
return 1;
}
}