diff options
-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) { |