diff options
author | jbj <devnull@localhost> | 2001-01-03 20:19:27 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-01-03 20:19:27 +0000 |
commit | 23fcf67cb51b54c4c1f23188ee355dbcbfba0a28 (patch) | |
tree | f8d1a8a5a523fd6f60760b2930f99f1f18349091 /rpmio/rpmio.c | |
parent | fd2c1d927f4a13e0507ab929a009decdbb90c01e (diff) | |
download | librpm-tizen-23fcf67cb51b54c4c1f23188ee355dbcbfba0a28.tar.gz librpm-tizen-23fcf67cb51b54c4c1f23188ee355dbcbfba0a28.tar.bz2 librpm-tizen-23fcf67cb51b54c4c1f23188ee355dbcbfba0a28.zip |
- fix: avoid locale issues with strcasecmp/strncasecmp (#23199).
- remove almost all explicit uses of stderr in rpmlib using rpmError().
CVS patchset: 4406
CVS date: 2001/01/03 20:19:27
Diffstat (limited to 'rpmio/rpmio.c')
-rw-r--r-- | rpmio/rpmio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpmio/rpmio.c b/rpmio/rpmio.c index d3603e70e..ae601d260 100644 --- a/rpmio/rpmio.c +++ b/rpmio/rpmio.c @@ -537,7 +537,7 @@ const char *const ftpStrerror(int errorNumber) { return _("Bad server response"); case FTPERR_SERVER_IO_ERROR: - return _("Server IO error"); + return _("Server I/O error"); case FTPERR_SERVER_TIMEOUT: return _("Server timeout"); @@ -555,7 +555,7 @@ const char *const ftpStrerror(int errorNumber) { return _("Failed to establish data connection to server"); case FTPERR_FILE_IO_ERROR: - return _("IO error to local file"); + return _("I/O error to local file"); case FTPERR_PASSIVE_ERROR: return _("Error setting remote server to passive mode"); |