diff options
author | Brian Behlendorf <[email protected]> | 2010-12-16 14:05:42 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-01-06 15:04:28 -0800 |
commit | 149e873ab174ded1f632f2b2eb2267593517c7ca (patch) | |
tree | cfc9d55c194367dd5e7407112103b65baca9e230 /lib/libzfs | |
parent | 683fe41fc718fd43f57aa9ca76457fe34e62057c (diff) |
Fix minor compiler warnings
These compiler warnings were introduced when code which was
previously #ifdef'ed out by HAVE_ZPL was re-added for use
by the posix layer. All of the following changes should be
obviously correct and will cause no semantic changes.
Diffstat (limited to 'lib/libzfs')
-rw-r--r-- | lib/libzfs/libzfs_mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libzfs/libzfs_mount.c b/lib/libzfs/libzfs_mount.c index 4b9038de8..88bd0714e 100644 --- a/lib/libzfs/libzfs_mount.c +++ b/lib/libzfs/libzfs_mount.c @@ -467,7 +467,7 @@ zfs_is_shared_proto(zfs_handle_t *zhp, char **where, zfs_share_proto_t proto) if (!zfs_is_mounted(zhp, &mountpoint)) return (SHARED_NOT_SHARED); - if (rc = is_shared(zhp->zfs_hdl, mountpoint, proto)) { + if ((rc = is_shared(zhp->zfs_hdl, mountpoint, proto))) { if (where != NULL) *where = mountpoint; else |