diff options
author | ewt <devnull@localhost> | 1996-03-15 23:00:55 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1996-03-15 23:00:55 +0000 |
commit | 998c552a7ea39b2d753413b5285469b488a0b254 (patch) | |
tree | 5efee865928bb0ec4f101a491b5c8e969fde323f /install.c | |
parent | 6a9763c47b147d07c740e9e2d26b9205c95bd587 (diff) | |
download | librpm-tizen-998c552a7ea39b2d753413b5285469b488a0b254.tar.gz librpm-tizen-998c552a7ea39b2d753413b5285469b488a0b254.tar.bz2 librpm-tizen-998c552a7ea39b2d753413b5285469b488a0b254.zip |
changed error message presented when an ftp fails
CVS patchset: 476
CVS date: 1996/03/15 23:00:55
Diffstat (limited to 'install.c')
-rw-r--r-- | install.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ void doInstall(char * prefix, char * arg, int installFlags, int interfaceFlags) } fd = getFtpURL(prefix, arg + 6); if (fd < 0) { - fprintf(stderr, "error: cannot ftp %s\n", arg); + fprintf(stderr, "error: ftp of %s failed\n", arg); return; } } else { |