From: Ralph Boehme Date: Sun, 3 May 2020 13:06:51 +0000 (+0200) Subject: s3/printing: realign synthetic_smb_fname() args in print_spool_open() X-Git-Tag: ldb-2.2.0~704 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=917b8a47ec92c5ec8cbaf3caaf2f881b5ee4c0ac;p=thirdparty%2Fsamba.git s3/printing: realign synthetic_smb_fname() args in print_spool_open() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/printing/printspoolss.c b/source3/printing/printspoolss.c index 8943452c9d4..63d11461dff 100644 --- a/source3/printing/printspoolss.c +++ b/source3/printing/printspoolss.c @@ -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;