Support an older AIX system that doesn't have ENOTSUP.
authorWayne Davison <wayned@samba.org>
Thu, 14 May 2009 18:23:38 +0000 (11:23 -0700)
committerWayne Davison <wayned@samba.org>
Thu, 14 May 2009 18:23:38 +0000 (11:23 -0700)
lib/sysacls.c

index 7334fd4..19d4d7a 100644 (file)
@@ -1815,7 +1815,11 @@ SMB_ACL_T sys_acl_get_file( const char *path_p, SMB_ACL_TYPE_T type)
 
        /* AIX has no DEFAULT */
        if  ( type == SMB_ACL_TYPE_DEFAULT ) {
+#ifdef ENOTSUP
                errno = ENOTSUP;
+#else
+               errno = ENOSYS;
+#endif
                return NULL;
        }