diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-06-01 15:01:09 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-06-02 02:13:49 +0200 |
commit | e9d797e153ae95561dbb10b56a41281b2472f137 (patch) | |
tree | 1a79b7c8d08352f7a9ead4c15b5c46d2a7f6aeaa /lib/replace/system | |
parent | f9b7cd53b9fe253b122cb545c2dd1be073ab0592 (diff) | |
download | samba-e9d797e153ae95561dbb10b56a41281b2472f137.tar.gz samba-e9d797e153ae95561dbb10b56a41281b2472f137.tar.bz2 samba-e9d797e153ae95561dbb10b56a41281b2472f137.zip |
lib/replace: Merge remaining xattr test details from lib/util
I prefer the longer XATTR_ADDITIONAL_OPTIONS define and the NULL
rather than 0 values in the getxattr test.
Andrew Bartlett
Diffstat (limited to 'lib/replace/system')
-rw-r--r-- | lib/replace/system/filesys.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/replace/system/filesys.h b/lib/replace/system/filesys.h index cf8b36b53f..a72a59a31a 100644 --- a/lib/replace/system/filesys.h +++ b/lib/replace/system/filesys.h @@ -224,42 +224,42 @@ #endif -#if !defined(HAVE_GETXATTR) || defined(XATTR_ADD_OPT) +#if !defined(HAVE_GETXATTR) || defined(XATTR_ADDITIONAL_OPTIONS) ssize_t rep_getxattr (const char *path, const char *name, void *value, size_t size); /* define is in "replace.h" */ #endif -#if !defined(HAVE_FGETXATTR) || defined(XATTR_ADD_OPT) +#if !defined(HAVE_FGETXATTR) || defined(XATTR_ADDITIONAL_OPTIONS) ssize_t rep_fgetxattr (int filedes, const char *name, void *value, size_t size); /* define is in "replace.h" */ #endif -#if !defined(HAVE_LISTXATTR) || defined(XATTR_ADD_OPT) +#if !defined(HAVE_LISTXATTR) || defined(XATTR_ADDITIONAL_OPTIONS) ssize_t rep_listxattr (const char *path, char *list, size_t size); /* define is in "replace.h" */ #endif -#if !defined(HAVE_FLISTXATTR) || defined(XATTR_ADD_OPT) +#if !defined(HAVE_FLISTXATTR) || defined(XATTR_ADDITIONAL_OPTIONS) ssize_t rep_flistxattr (int filedes, char *list, size_t size); /* define is in "replace.h" */ #endif -#if !defined(HAVE_REMOVEXATTR) || defined(XATTR_ADD_OPT) +#if !defined(HAVE_REMOVEXATTR) || defined(XATTR_ADDITIONAL_OPTIONS) int rep_removexattr (const char *path, const char *name); /* define is in "replace.h" */ #endif -#if !defined(HAVE_FREMOVEXATTR) || defined(XATTR_ADD_OPT) +#if !defined(HAVE_FREMOVEXATTR) || defined(XATTR_ADDITIONAL_OPTIONS) int rep_fremovexattr (int filedes, const char *name); /* define is in "replace.h" */ #endif -#if !defined(HAVE_SETXATTR) || defined(XATTR_ADD_OPT) +#if !defined(HAVE_SETXATTR) || defined(XATTR_ADDITIONAL_OPTIONS) int rep_setxattr (const char *path, const char *name, const void *value, size_t size, int flags); /* define is in "replace.h" */ #endif -#if !defined(HAVE_FSETXATTR) || defined(XATTR_ADD_OPT) +#if !defined(HAVE_FSETXATTR) || defined(XATTR_ADDITIONAL_OPTIONS) int rep_fsetxattr (int filedes, const char *name, const void *value, size_t size, int flags); /* define is in "replace.h" */ #endif |