diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-05 12:10:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:31 -0500 |
commit | 8a5c9c28410ae0320356fe1686ad0ee7d1ec0e7b (patch) | |
tree | 2be85aa96f114347a458a4a3d8c17fc970fd4202 | |
parent | b875cdf5db045c26da503cde26ae5c3629e6014a (diff) | |
download | samba-8a5c9c28410ae0320356fe1686ad0ee7d1ec0e7b.tar.gz samba-8a5c9c28410ae0320356fe1686ad0ee7d1ec0e7b.tar.bz2 samba-8a5c9c28410ae0320356fe1686ad0ee7d1ec0e7b.zip |
r3552: fixed sense of ACL test
(This used to be commit 630af28a0f812b5bafce3ffeb72ebd069b66adac)
-rw-r--r-- | source4/utils/getntacl.c | 2 | ||||
-rw-r--r-- | source4/utils/setntacl.c | 2 | ||||
-rw-r--r-- | source4/utils/setnttoken.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source4/utils/getntacl.c b/source4/utils/getntacl.c index 72fffd9ee8..6045e72013 100644 --- a/source4/utils/getntacl.c +++ b/source4/utils/getntacl.c @@ -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) { diff --git a/source4/utils/setntacl.c b/source4/utils/setntacl.c index 098d787976..3565da2a79 100644 --- a/source4/utils/setntacl.c +++ b/source4/utils/setntacl.c @@ -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) { diff --git a/source4/utils/setnttoken.c b/source4/utils/setnttoken.c index c51c582b82..06544d0bc7 100644 --- a/source4/utils/setnttoken.c +++ b/source4/utils/setnttoken.c @@ -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) { |