diff options
author | Emmanuel Dreyfus <manu@netbsd.org> | 2012-12-12 12:05:32 +0100 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-12-12 23:05:55 -0800 |
commit | 9a395d2db3a88d4ba479dfe0f5ad3769efee7f3a (patch) | |
tree | 6acc5816e6d594126488afe1c7b310c90536e5f0 /contrib | |
parent | 06d4cced24f9854e3439f03a0c940adc5306de48 (diff) |
NetBSD MS_RDONLY portability build fix
NetBSD uses MNT_RDONLY where Linux uses MS_RDONLY
BUG: 815227
Change-Id: I8d78831f07e575b215aabc46eaa66e5e277bda0e
Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org>
Reviewed-on: http://review.gluster.org/4299
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/fuse-lib/mount-gluster-compat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/fuse-lib/mount-gluster-compat.h b/contrib/fuse-lib/mount-gluster-compat.h index 17c11e78920..4fc20623bc9 100644 --- a/contrib/fuse-lib/mount-gluster-compat.h +++ b/contrib/fuse-lib/mount-gluster-compat.h @@ -33,6 +33,7 @@ #ifdef __NetBSD__ #include <perfuse.h> #define umount2(dir, flags) unmount(dir, ((flags) != 0) ? MNT_FORCE : 0) +#define MS_RDONLY MNT_RDONLY #endif #ifdef linux |