diff options
author | Emmanuel Dreyfus <manu@netbsd.org> | 2012-04-27 11:41:14 +0200 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2012-05-11 00:41:24 -0700 |
commit | 8c4bf91025e2bf510a56f5789594beceb3c3827c (patch) | |
tree | 153dc2c2dcf15d80401c8193b3fda919512cb06a /contrib | |
parent | 511f99b88d0e1b2962b3b5bbddf722ad07d15575 (diff) |
NetBSD build fixes
Change-Id: Ib8183d4b585465d05a7adf3a4ceae93ae1bded15
BUG: 764655
Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org>
Reviewed-on: http://review.gluster.com/3238
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/fuse-lib/mount.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/fuse-lib/mount.c b/contrib/fuse-lib/mount.c index 8c5da3d61..fde9f316a 100644 --- a/contrib/fuse-lib/mount.c +++ b/contrib/fuse-lib/mount.c @@ -600,6 +600,7 @@ fuse_mount_sys (const char *mountpoint, char *fsname, char *mnt_param, pid_t *mt else mounted = 1; +#ifndef __NetBSD__ if (geteuid () == 0) { char *newmnt = fuse_mnt_resolve_path ("fuse", mountpoint); @@ -618,6 +619,7 @@ fuse_mount_sys (const char *mountpoint, char *fsname, char *mnt_param, pid_t *mt goto out; } } +#endif /* __NetBSD__ */ ret = 0; out: |