Return success here not failure

This commit is contained in:
Brian Behlendorf 2009-01-14 10:37:35 -08:00
parent 7423bcfe2a
commit bdde0d9d40
1 changed files with 2 additions and 2 deletions

View File

@ -1436,13 +1436,13 @@ zfs_is_shared(zfs_handle_t *zhp)
int int
zpool_enable_datasets(zpool_handle_t *zhp, const char *mntopts, int flags) zpool_enable_datasets(zpool_handle_t *zhp, const char *mntopts, int flags)
{ {
return B_TRUE; return B_FALSE;
} }
int int
zpool_disable_datasets(zpool_handle_t *zhp, boolean_t force) zpool_disable_datasets(zpool_handle_t *zhp, boolean_t force)
{ {
return B_TRUE; return B_FALSE;
} }
#endif /* HAVE_ZPL */ #endif /* HAVE_ZPL */