s3/printing: realign synthetic_smb_fname() args in print_spool_open()
authorRalph Boehme <slow@samba.org>
Sun, 3 May 2020 13:06:51 +0000 (15:06 +0200)
committerJeremy Allison <jra@samba.org>
Tue, 5 May 2020 19:18:39 +0000 (19:18 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/printing/printspoolss.c

index 8943452c9d4f2caac24593d752ac33d3a39073a9..63d11461dffcca1163921e75cdc543dc8e4b3571 100644 (file)
@@ -213,7 +213,11 @@ NTSTATUS print_spool_open(files_struct *fsp,
        }
 
        /* setup a full fsp */
-       fsp->fsp_name = synthetic_smb_fname(fsp, pf->filename, NULL, NULL, 0);
+       fsp->fsp_name = synthetic_smb_fname(fsp,
+                                           pf->filename,
+                                           NULL,
+                                           NULL,
+                                           0);
        if (fsp->fsp_name == NULL) {
                status = NT_STATUS_NO_MEMORY;
                goto done;