diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-01-15 16:21:10 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-01-15 16:21:10 +0000 |
| commit | d42e16a0d6512778cfae3ab11472b161d5074795 (patch) | |
| tree | 5cd14f8429c545bf05b57d3db39aae1b37ae9270 /usr.sbin/sysinstall/ftp.c | |
| parent | c5e12995c694a4ecf771a80ae2a119261a695f5c (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sysinstall/ftp.c')
| -rw-r--r-- | usr.sbin/sysinstall/ftp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/ftp.c b/usr.sbin/sysinstall/ftp.c index f1e43043a64a..1c5a6e613a38 100644 --- a/usr.sbin/sysinstall/ftp.c +++ b/usr.sbin/sysinstall/ftp.c @@ -103,9 +103,10 @@ try: if (dir && *dir != '\0') { if ((i = ftpChdir(OpenConn, dir)) != 0) { if (i == 550) - msgConfirm("No such directory %s, please check your path and try again.", dir); + msgConfirm("No such directory ftp://%s/%s\n" + "please check your URL and try again.", hostname, dir); else - msgConfirm("FTP chdir to directory %s returned FTP error status %d\n", dir, i); + msgConfirm("FTP chdir to ftp://%s/%s returned error status %d\n", hostname, dir, i); goto punt; } } |
