diff options
author | jbj <devnull@localhost> | 2001-02-11 22:02:29 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-02-11 22:02:29 +0000 |
commit | 2be9ecf0eb0f5f4afe10d0cb2b096d7442d5f2f7 (patch) | |
tree | 4193de18866516e23f5155933d0b31bf70ad2a44 /lib/cpio.h | |
parent | eccb6f66fc6cc5ecdebf40a6a8150a804f870fe5 (diff) | |
download | rpm-2be9ecf0eb0f5f4afe10d0cb2b096d7442d5f2f7.tar.gz rpm-2be9ecf0eb0f5f4afe10d0cb2b096d7442d5f2f7.tar.bz2 rpm-2be9ecf0eb0f5f4afe10d0cb2b096d7442d5f2f7.zip |
1st stab at --repackage.
CVS patchset: 4545
CVS date: 2001/02/11 22:02:29
Diffstat (limited to 'lib/cpio.h')
-rw-r--r-- | lib/cpio.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/cpio.h b/lib/cpio.h index 86272e914..972fc60f7 100644 --- a/lib/cpio.h +++ b/lib/cpio.h @@ -57,12 +57,14 @@ enum cpioErrorReturns { /** \ingroup payload */ typedef enum cpioMapFlags_e { - CPIO_MAP_PATH = (1 << 0), - CPIO_MAP_MODE = (1 << 1), - CPIO_MAP_UID = (1 << 2), - CPIO_MAP_GID = (1 << 3), - CPIO_FOLLOW_SYMLINKS = (1 << 4), /* only for building. */ - CPIO_MULTILIB = (1 << 31) /* internal, only for building. */ + CPIO_MAP_PATH = (1 << 0), + CPIO_MAP_MODE = (1 << 1), + CPIO_MAP_UID = (1 << 2), + CPIO_MAP_GID = (1 << 3), + CPIO_FOLLOW_SYMLINKS= (1 << 4), /* only for building. */ + CPIO_MAP_ABSOLUTE = (1 << 5), + CPIO_MAP_ADDDOT = (1 << 6), + CPIO_MULTILIB = (1 << 31) /* internal, only for building. */ } cpioMapFlags; #define CPIO_NEWC_MAGIC "070701" |