Author: tridge Date: 2004-11-05 12:10:28 +0000 (Fri, 05 Nov 2004) New Revision: 3552
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=3552 Log: fixed sense of ACL test Modified: branches/SAMBA_4_0/source/utils/getntacl.c branches/SAMBA_4_0/source/utils/setntacl.c branches/SAMBA_4_0/source/utils/setnttoken.c Changeset: Modified: branches/SAMBA_4_0/source/utils/getntacl.c =================================================================== --- branches/SAMBA_4_0/source/utils/getntacl.c 2004-11-05 12:06:36 UTC (rev 3551) +++ branches/SAMBA_4_0/source/utils/getntacl.c 2004-11-05 12:10:28 UTC (rev 3552) @@ -23,7 +23,7 @@ #include "includes.h" #include "system/filesys.h" -#if (!defined(HAVE_NO_ACLS) || !defined(HAVE_XATTR_SUPPORT)) +#if (defined(HAVE_NO_ACLS) || !defined(HAVE_XATTR_SUPPORT)) int main(int argc, char **argv) { Modified: branches/SAMBA_4_0/source/utils/setntacl.c =================================================================== --- branches/SAMBA_4_0/source/utils/setntacl.c 2004-11-05 12:06:36 UTC (rev 3551) +++ branches/SAMBA_4_0/source/utils/setntacl.c 2004-11-05 12:10:28 UTC (rev 3552) @@ -23,7 +23,7 @@ #include "includes.h" #include "system/filesys.h" -#if (!defined(HAVE_NO_ACLS) || !defined(HAVE_XATTR_SUPPORT)) +#if (defined(HAVE_NO_ACLS) || !defined(HAVE_XATTR_SUPPORT)) int main(int argc, char **argv) { Modified: branches/SAMBA_4_0/source/utils/setnttoken.c =================================================================== --- branches/SAMBA_4_0/source/utils/setnttoken.c 2004-11-05 12:06:36 UTC (rev 3551) +++ branches/SAMBA_4_0/source/utils/setnttoken.c 2004-11-05 12:10:28 UTC (rev 3552) @@ -23,7 +23,7 @@ #include "includes.h" #include "system/filesys.h" -#if (!defined(HAVE_NO_ACLS) || !defined(HAVE_XATTR_SUPPORT)) +#if (defined(HAVE_NO_ACLS) || !defined(HAVE_XATTR_SUPPORT)) int main(int argc, char **argv) {
