diff options
author | Brian Behlendorf <behlendorf1@llnl.gov> | 2009-07-02 22:44:48 +0000 |
---|---|---|
committer | Brian Behlendorf <behlendorf1@llnl.gov> | 2009-07-02 22:44:48 +0000 |
commit | 9babb37438b58e77bad04e820d5702e15b79e6a6 (patch) | |
tree | e369da81095eca3fc155b0c02bdd4a9f06506781 /module/zfs/dsl_dir.c | |
parent | d164b2093561a9771db07346e6fffc9ca19427a2 (diff) | |
download | src-9babb37438b58e77bad04e820d5702e15b79e6a6.tar.gz src-9babb37438b58e77bad04e820d5702e15b79e6a6.zip |
Diffstat (limited to 'module/zfs/dsl_dir.c')
-rw-r--r-- | module/zfs/dsl_dir.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/module/zfs/dsl_dir.c b/module/zfs/dsl_dir.c index e5e18f428701..f19653d9241b 100644 --- a/module/zfs/dsl_dir.c +++ b/module/zfs/dsl_dir.c @@ -227,24 +227,11 @@ dsl_dir_namelen(dsl_dir_t *dd) return (result); } -int -dsl_dir_is_private(dsl_dir_t *dd) -{ - int rv = FALSE; - - if (dd->dd_parent && dsl_dir_is_private(dd->dd_parent)) - rv = TRUE; - if (dataset_name_hidden(dd->dd_myname)) - rv = TRUE; - return (rv); -} - - static int getcomponent(const char *path, char *component, const char **nextp) { char *p; - if (path == NULL) + if ((path == NULL) || (path[0] == '\0')) return (ENOENT); /* This would be a good place to reserve some namespace... */ p = strpbrk(path, "/@"); |