Add support for new flavours of ACLs on AIX. (Untested.)
[gnulib.git] / tests / test-sameacls.c
index 20b0a47..736be57 100644 (file)
@@ -447,7 +447,9 @@ main (int argc, char *argv[])
   mode_t mode2;
   char text2[1000];
 
-  memset (&type1, 0, sizeof (type1)); /* type1 = ACL_ANY */
+  /* The docs say that type1 being 0 is equivalent to ACL_ANY, but it is not
+     true, in AIX 5.3.  */
+  type1.u64 = ACL_ANY;
   if (aclx_get (file1, 0, &type1, acl1, &aclsize1, &mode1) < 0)
     {
       fprintf (stderr, "error accessing the ACLs of file %s\n", file1);
@@ -461,7 +463,9 @@ main (int argc, char *argv[])
       abort ();
     }
 
-  memset (&type2, 0, sizeof (type2)); /* type2 = ACL_ANY */
+  /* The docs say that type1 being 0 is equivalent to ACL_ANY, but it is not
+     true, in AIX 5.3.  */
+  type2.u64 = ACL_ANY;
   if (aclx_get (file2, 0, &type2, acl2, &aclsize2, &mode2) < 0)
     {
       fprintf (stderr, "error accessing the ACLs of file %s\n", file2);