summaryrefslogtreecommitdiff
path: root/libacl/libacl.h
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2002-04-22 05:19:17 +0000
committerNathan Scott <nathans@sgi.com>2002-04-22 05:19:17 +0000
commitbed09859c3e9e8d50f0e3f83db27f72effabe44f (patch)
treece58cb4964af898d71070bfaa20e868a8672cefa /libacl/libacl.h
parentd903a31dfd0d62e4d9791d62c0da3df3e2904462 (diff)
downloadacl-bed09859c3e9e8d50f0e3f83db27f72effabe44f.tar.gz
updates from Andreas -libacl build change, 64 bit struct packing fix rework.
Diffstat (limited to 'libacl/libacl.h')
-rw-r--r--libacl/libacl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libacl/libacl.h b/libacl/libacl.h
index 3c973b6..3167e2b 100644
--- a/libacl/libacl.h
+++ b/libacl/libacl.h
@@ -22,7 +22,7 @@ struct __acl_permset_ext {
};
struct acl_permset_obj_tag {
obj_prefix o_prefix;
- struct __acl_permset_ext i;
+ struct __acl_permset_ext i __attribute__ ((packed));
};
#define sperm i.s_perm
@@ -38,7 +38,7 @@ struct __qualifier_ext {
struct qualifier_obj_tag {
obj_prefix o_prefix;
- struct __qualifier_ext i;
+ struct __qualifier_ext i __attribute__ ((packed));
};
#define qid i.q_id
@@ -61,7 +61,7 @@ struct __acl_entry_ext {
struct acl_entry_obj_tag {
obj_prefix o_prefix;
- struct __acl_entry_ext i;
+ struct __acl_entry_ext i __attribute__ ((packed));
};
#define econtainer i.e_container
@@ -88,7 +88,7 @@ struct __acl_ext {
};
struct acl_obj_tag {
obj_prefix o_prefix;
- struct __acl_ext i;
+ struct __acl_ext i __attribute__ ((packed));
};
#define aprev i.a_prev