From 0122a4f41744c36aa97d73c060cfb952d2fdbc2d Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 9 Feb 2011 16:31:06 -0800 Subject: Put OpenDir() back the way it was - don't overload with an fsp arg. Create OpenDir_fsp for new usage. Autobuild-User: Jeremy Allison Autobuild-Date: Thu Feb 10 02:43:31 CET 2011 on sn-devel-104 --- source3/smbd/reply.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/smbd/reply.c') diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 120b8bc69f..dea265f679 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -2647,7 +2647,7 @@ NTSTATUS unlink_internals(connection_struct *conn, struct smb_request *req, goto out; } - dir_hnd = OpenDir(talloc_tos(), conn, NULL, fname_dir, fname_mask, + dir_hnd = OpenDir(talloc_tos(), conn, fname_dir, fname_mask, dirtype); if (dir_hnd == NULL) { status = map_nt_error_from_unix(errno); @@ -6380,7 +6380,7 @@ NTSTATUS rename_internals(TALLOC_CTX *ctx, goto out; } - dir_hnd = OpenDir(talloc_tos(), conn, NULL, fname_src_dir, fname_src_mask, + dir_hnd = OpenDir(talloc_tos(), conn, fname_src_dir, fname_src_mask, attrs); if (dir_hnd == NULL) { status = map_nt_error_from_unix(errno); @@ -7067,7 +7067,7 @@ void reply_copy(struct smb_request *req) goto out; } - dir_hnd = OpenDir(ctx, conn, NULL, fname_src_dir, fname_src_mask, 0); + dir_hnd = OpenDir(ctx, conn, fname_src_dir, fname_src_mask, 0); if (dir_hnd == NULL) { status = map_nt_error_from_unix(errno); reply_nterror(req, status); -- cgit