Remove __acl16 from official header
* include/cyggwin/acl.h (struct __acl16): Move from here... * sec_acl.cc: ...to here. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
61a2d9dedb
commit
651bb62ae2
|
@ -1,3 +1,8 @@
|
||||||
|
2015-04-08 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* include/cyggwin/acl.h (struct __acl16): Move from here...
|
||||||
|
* sec_acl.cc: ...to here.
|
||||||
|
|
||||||
2015-04-07 Corinna Vinschen <corinna@vinschen.de>
|
2015-04-07 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* tty.h (class tty): Remove unused 32/64 bit interoperability
|
* tty.h (class tty): Remove unused 32/64 bit interoperability
|
||||||
|
|
|
@ -58,16 +58,6 @@ extern "C" {
|
||||||
#define MASK CLASS_OBJ
|
#define MASK CLASS_OBJ
|
||||||
#define OTHER OTHER_OBJ
|
#define OTHER OTHER_OBJ
|
||||||
|
|
||||||
#ifdef __INSIDE_CYGWIN__
|
|
||||||
#ifndef __x86_64__
|
|
||||||
typedef struct __acl16 {
|
|
||||||
int a_type;
|
|
||||||
__uid16_t a_id;
|
|
||||||
mode_t a_perm;
|
|
||||||
} __aclent16_t;
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef struct acl {
|
typedef struct acl {
|
||||||
int a_type; /* entry type */
|
int a_type; /* entry type */
|
||||||
uid_t a_id; /* UID | GID */
|
uid_t a_id; /* UID | GID */
|
||||||
|
|
|
@ -1102,6 +1102,12 @@ EXPORT_ALIAS (aclfrompbits32, aclfrompbits)
|
||||||
EXPORT_ALIAS (acltotext32, acltotext)
|
EXPORT_ALIAS (acltotext32, acltotext)
|
||||||
EXPORT_ALIAS (aclfromtext32, aclfromtext)
|
EXPORT_ALIAS (aclfromtext32, aclfromtext)
|
||||||
#else
|
#else
|
||||||
|
typedef struct __acl16 {
|
||||||
|
int a_type;
|
||||||
|
__uid16_t a_id;
|
||||||
|
mode_t a_perm;
|
||||||
|
} __aclent16_t;
|
||||||
|
|
||||||
/* __aclent16_t and aclent_t have same size and same member offsets */
|
/* __aclent16_t and aclent_t have same size and same member offsets */
|
||||||
static aclent_t *
|
static aclent_t *
|
||||||
acl16to32 (__aclent16_t *aclbufp, int nentries)
|
acl16to32 (__aclent16_t *aclbufp, int nentries)
|
||||||
|
|
Loading…
Reference in New Issue