diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-02-22 09:28:51 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-02-25 08:03:41 +0100 |
commit | d5414cdc63b797a47fcbd1f55df98c7dd850ffa6 (patch) | |
tree | f100eacdd17d90c1a4c4d455626e0deb81c8894d /source4 | |
parent | a56bd4fa82bcb5c586f182e8123f2fc41b12e41d (diff) | |
download | samba-d5414cdc63b797a47fcbd1f55df98c7dd850ffa6.tar.gz samba-d5414cdc63b797a47fcbd1f55df98c7dd850ffa6.tar.xz samba-d5414cdc63b797a47fcbd1f55df98c7dd850ffa6.zip |
pvfs_unlink: move !name->stream_exists into the caller
metze
(This used to be commit e01554e1617dc3c08a4ed6b4e016fd627f529ef9)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/ntvfs/posix/pvfs_unlink.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/ntvfs/posix/pvfs_unlink.c b/source4/ntvfs/posix/pvfs_unlink.c index 8dbf9ee7242..2b96a5032c9 100644 --- a/source4/ntvfs/posix/pvfs_unlink.c +++ b/source4/ntvfs/posix/pvfs_unlink.c @@ -34,10 +34,6 @@ static NTSTATUS pvfs_unlink_stream(struct pvfs_state *pvfs, { NTSTATUS status; - if (!name->stream_exists) { - return NT_STATUS_OBJECT_NAME_NOT_FOUND; - } - /* make sure its matches the given attributes */ status = pvfs_match_attrib(pvfs, name, unl->unlink.in.attrib, 0); @@ -135,6 +131,10 @@ NTSTATUS pvfs_unlink(struct ntvfs_module_context *ntvfs, } if (name->stream_name) { + if (!name->stream_exists) { + return NT_STATUS_OBJECT_NAME_NOT_FOUND; + } + return pvfs_unlink_stream(pvfs, req, unl, name); } |