diff options
author | jbj <devnull@localhost> | 2003-03-23 00:36:13 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-03-23 00:36:13 +0000 |
commit | 803528c258d2c14b820a9b2fb5bf2eba9a486133 (patch) | |
tree | 15707e0cfd3a02959e73f0c358062f81cc5a6258 /lib/cpio.c | |
parent | 96cd0c2e288fa8ca561ad814265bc2138a80ddaa (diff) | |
download | librpm-tizen-803528c258d2c14b820a9b2fb5bf2eba9a486133.tar.gz librpm-tizen-803528c258d2c14b820a9b2fb5bf2eba9a486133.tar.bz2 librpm-tizen-803528c258d2c14b820a9b2fb5bf2eba9a486133.zip |
Make peace with automake-1.7.3.
Recheck thread safety markes with fsm synchronous threads.
CVS patchset: 6714
CVS date: 2003/03/23 00:36:13
Diffstat (limited to 'lib/cpio.c')
-rw-r--r-- | lib/cpio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/cpio.c b/lib/cpio.c index c72c5361d..24bb52e89 100644 --- a/lib/cpio.c +++ b/lib/cpio.c @@ -235,6 +235,8 @@ const char *const cpioStrerror(int rc) case CPIOERR_MD5SUM_MISMATCH: s = _("MD5 sum mismatch"); break; case CPIOERR_INTERNAL: s = _("Internal error"); break; case CPIOERR_UNMAPPED_FILE: s = _("Archive file not in header"); break; + case CPIOERR_ENOENT: s = strerror(ENOENT); break; + case CPIOERR_ENOTEMPTY: s = strerror(ENOTEMPTY); break; } /*@=branchstate@*/ |