summaryrefslogtreecommitdiff
path: root/source3/printing
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2022-07-28 12:01:21 -0700
committerJeremy Allison <jra@samba.org>2022-08-02 19:49:32 +0000
commit2a9d7beb9e33316ac185d5cbd0e498502474b4e8 (patch)
treedff70fe2bbce872e6461efa30078f54b841bd223 /source3/printing
parenta6c34ec3c2598ad364444da829b9fff23996cebc (diff)
downloadsamba-2a9d7beb9e33316ac185d5cbd0e498502474b4e8.tar.gz
s3: smbd: Add dirfsp parameter to create_directory().
Not yet used but passed down to SMB_VFS_CREATE(). Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org>
Diffstat (limited to 'source3/printing')
-rw-r--r--source3/printing/nt_printing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c
index a1763d030e4..dc54a194f65 100644
--- a/source3/printing/nt_printing.c
+++ b/source3/printing/nt_printing.c
@@ -1577,7 +1577,7 @@ WERROR move_driver_to_download_area(const struct auth_session_info *session_info
DEBUG(5,("Creating first directory: %s\n", smb_dname->base_name));
- nt_status = create_directory(conn, NULL, smb_dname);
+ nt_status = create_directory(conn, NULL, NULL, smb_dname);
if (!NT_STATUS_IS_OK(nt_status)
&& !NT_STATUS_EQUAL(nt_status, NT_STATUS_OBJECT_NAME_COLLISION)) {
DEBUG(0, ("failed to create driver destination directory: %s\n",