From ee36104279f55c26a0ec71abbe8cccbbd0bc3966 Mon Sep 17 00:00:00 2001 From: Przemyslaw Pawelczyk Date: Mon, 19 Feb 2018 01:41:15 +0100 Subject: Support building with empty -DNO_XATTR= (equivalent to -DNO_XATTR=0). --- src/metastore.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/metastore.c') diff --git a/src/metastore.c b/src/metastore.c index 9f01a8c..e262a18 100644 --- a/src/metastore.c +++ b/src/metastore.c @@ -26,7 +26,7 @@ #include #include -#if !defined(NO_XATTR) || !NO_XATTR +#if !defined(NO_XATTR) || !(NO_XATTR+0) # include #endif /* !NO_XATTR */ @@ -127,7 +127,7 @@ compare_print(struct metaentry *real, struct metaentry *stored, int cmp) msg(MSG_QUIET, "xattr "); msg(MSG_QUIET, "\n"); - if (NO_XATTR && cmp & DIFF_XATTR) { + if ((NO_XATTR+0) && cmp & DIFF_XATTR) { msg(MSG_WARNING, "%s:\txattr difference may be bogus: %s\n", real->path, NO_XATTR_MSG); } @@ -244,11 +244,11 @@ compare_fix(struct metaentry *real, struct metaentry *stored, int cmp) msg(MSG_NORMAL, "%s:\tremoving xattr %s\n", real->path, real->xattr_names[i]); - if (NO_XATTR) { + if ((NO_XATTR+0)) { msg(MSG_WARNING, "%s:\tremoving xattr %s failed: %s\n", real->path, real->xattr_names[i], NO_XATTR_MSG); } -#if !defined(NO_XATTR) || !NO_XATTR +#if !defined(NO_XATTR) || !(NO_XATTR+0) else if (lremovexattr(real->path, real->xattr_names[i])) msg(MSG_DEBUG, "\tlremovexattr failed: %s\n", @@ -263,11 +263,11 @@ compare_fix(struct metaentry *real, struct metaentry *stored, int cmp) msg(MSG_NORMAL, "%s:\tadding xattr %s\n", stored->path, stored->xattr_names[i]); - if (NO_XATTR) { + if ((NO_XATTR+0)) { msg(MSG_WARNING, "%s:\tadding xattr %s failed: %s\n", stored->path, stored->xattr_names[i], NO_XATTR_MSG); } -#if !defined(NO_XATTR) || !NO_XATTR +#if !defined(NO_XATTR) || !(NO_XATTR+0) else if (lsetxattr(stored->path, stored->xattr_names[i], stored->xattr_values[i], @@ -424,7 +424,7 @@ version(void) { printf("metastore %s\n", METASTORE_VER); - if (NO_XATTR) { + if ((NO_XATTR+0)) { printf("Built with %s.\n", NO_XATTR_MSG); } -- cgit v1.2.1