summaryrefslogtreecommitdiff
path: root/lib/cpio.h
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2001-07-16 14:48:07 +0000
committerjbj <devnull@localhost>2001-07-16 14:48:07 +0000
commitecfb46adaaeff044c1a44602b141ca885d351c06 (patch)
tree52e0ce2837166889f6efbb1c51d6c6b8e46bf611 /lib/cpio.h
parent77d49ea5a28862a3c9a014b7636b0c57a2c439e5 (diff)
downloadrpm-ecfb46adaaeff044c1a44602b141ca885d351c06.tar.gz
rpm-ecfb46adaaeff044c1a44602b141ca885d351c06.tar.bz2
rpm-ecfb46adaaeff044c1a44602b141ca885d351c06.zip
- fix: don't total hard linked file size multiple times (#46286).
- add %dev(type,major,minor) directive to permit non-root dev build. CVS patchset: 4944 CVS date: 2001/07/16 14:48:07
Diffstat (limited to 'lib/cpio.h')
-rw-r--r--lib/cpio.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/cpio.h b/lib/cpio.h
index 6789f04c0..c87b8ef47 100644
--- a/lib/cpio.h
+++ b/lib/cpio.h
@@ -61,11 +61,12 @@ typedef enum cpioMapFlags_e {
CPIO_MAP_MODE = (1 << 1),
CPIO_MAP_UID = (1 << 2),
CPIO_MAP_GID = (1 << 3),
- CPIO_FOLLOW_SYMLINKS= (1 << 4), /* only for building. */
+ CPIO_FOLLOW_SYMLINKS= (1 << 4), /*!< only for building. */
CPIO_MAP_ABSOLUTE = (1 << 5),
CPIO_MAP_ADDDOT = (1 << 6),
CPIO_ALL_HARDLINKS = (1 << 7), /*!< fail if hardlinks are missing. */
- CPIO_MULTILIB = (1 << 31) /* internal, only for building. */
+ CPIO_MAP_TYPE = (1 << 8), /*!< only for building. */
+ CPIO_MULTILIB = (1 << 31) /*!< internal, only for building. */
} cpioMapFlags;
#define CPIO_NEWC_MAGIC "070701"