From 1607ebfe8632fa13c5ffb466b8c9f416d7ab20aa Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 9 Feb 2011 15:05:58 -0800 Subject: Allow SMB2_FIND to actually use the open fd handle if we support fdopendir. Fallback to pathname opendir if not. --- source3/smbd/close.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/smbd/close.c') diff --git a/source3/smbd/close.c b/source3/smbd/close.c index d5a824f868..60cf8ed945 100644 --- a/source3/smbd/close.c +++ b/source3/smbd/close.c @@ -699,7 +699,7 @@ static bool recursive_rmdir(TALLOC_CTX *ctx, SMB_ASSERT(!is_ntfs_stream_smb_fname(smb_dname)); - dir_hnd = OpenDir(talloc_tos(), conn, smb_dname->base_name, NULL, 0); + dir_hnd = OpenDir(talloc_tos(), conn, NULL, smb_dname->base_name, NULL, 0); if(dir_hnd == NULL) return False; @@ -817,6 +817,7 @@ static NTSTATUS rmdir_internals(TALLOC_CTX *ctx, files_struct *fsp) char *talloced = NULL; long dirpos = 0; struct smb_Dir *dir_hnd = OpenDir(talloc_tos(), conn, + NULL, smb_dname->base_name, NULL, 0); -- cgit