diff options
-rw-r--r-- | source3/modules/vfs_gpfs.c | 4 | ||||
-rw-r--r-- | source3/modules/vfs_gpfs.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index b91e377e94..12d163e7b1 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -38,6 +38,10 @@ #include "auth.h" #include "lib/util/tevent_unix.h" +#ifndef GPFS_GETACL_NATIVE +#define GPFS_GETACL_NATIVE 0x00000004 +#endif + struct gpfs_config_data { bool sharemodes; bool leases; diff --git a/source3/modules/vfs_gpfs.h b/source3/modules/vfs_gpfs.h index 4399c9bb04..dbc4f43c86 100644 --- a/source3/modules/vfs_gpfs.h +++ b/source3/modules/vfs_gpfs.h @@ -23,10 +23,6 @@ */ -#ifndef GPFS_GETACL_NATIVE -#define GPFS_GETACL_NATIVE 0x00000004 -#endif - int gpfswrap_init(void); int gpfswrap_set_share(int fd, unsigned int allow, unsigned int deny); int gpfswrap_set_lease(int fd, unsigned int type); |