summaryrefslogtreecommitdiff
path: root/lib/cpio.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2003-03-23 00:36:13 +0000
committerjbj <devnull@localhost>2003-03-23 00:36:13 +0000
commit803528c258d2c14b820a9b2fb5bf2eba9a486133 (patch)
tree15707e0cfd3a02959e73f0c358062f81cc5a6258 /lib/cpio.c
parent96cd0c2e288fa8ca561ad814265bc2138a80ddaa (diff)
downloadrpm-803528c258d2c14b820a9b2fb5bf2eba9a486133.tar.gz
rpm-803528c258d2c14b820a9b2fb5bf2eba9a486133.tar.bz2
rpm-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.c2
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@*/