diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-02-21 22:48:24 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-02-21 22:48:24 +0000 |
commit | 7eb32e92a3df5f0bcefdb58e386414c1e7d3e6da (patch) | |
tree | fae8ecb2f40763278a08a7eeaa738150b380eea5 /bin/pax/pax.h | |
parent | 0d78e3742c523340ed11e8491851ca6e38258bc5 (diff) |
Recent changes haven't been completely stable, so revert for the 5.7 release
requested by deraadt@
Diffstat (limited to 'bin/pax/pax.h')
-rw-r--r-- | bin/pax/pax.h | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/bin/pax/pax.h b/bin/pax/pax.h index 4ef7dcdfa3e..ef2c78f49f4 100644 --- a/bin/pax/pax.h +++ b/bin/pax/pax.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pax.h,v 1.23 2015/02/11 23:14:46 guenther Exp $ */ +/* $OpenBSD: pax.h,v 1.24 2015/02/21 22:48:23 guenther Exp $ */ /* $NetBSD: pax.h,v 1.3 1995/03/21 09:07:41 cgd Exp $ */ /*- @@ -211,20 +211,6 @@ typedef struct { } FSUB; /* - * Time data for a given file. This is usually embedded in a structure - * indexed by dev+ino, by name, by order in the archive, etc. set_attr() - * takes one of these and will only change the times or mode if the file - * at the given name has the indicated dev+ino. - */ -struct file_times { - ino_t ft_ino; /* inode number to verify */ - time_t ft_mtime; /* times to set */ - time_t ft_atime; - char *ft_name; /* name of file to set the times on */ - dev_t ft_dev; /* device number to verify */ -}; - -/* * Format Specific Options List * * Used to pass format options to the format options handler @@ -243,10 +229,6 @@ typedef struct oplist { #define MINOR(x) minor(x) #define TODEV(x, y) makedev((x), (y)) -#define FILEBITS (S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO) -#define SETBITS (S_ISUID | S_ISGID) -#define ABITS (FILEBITS | SETBITS) - /* * General Defines */ |