From: Ralph Boehme Date: Sun, 3 May 2020 13:08:36 +0000 (+0200) Subject: smbd: realign synthetic_smb_fname() args in smbd_dirptr_lanman2_entry() X-Git-Tag: ldb-2.2.0~699 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed27194363b16926d82039938f647b65f714e191;p=thirdparty%2Fsamba.git smbd: realign synthetic_smb_fname() args in smbd_dirptr_lanman2_entry() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 65c50336f6f..fc0e513b562 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -2632,7 +2632,11 @@ NTSTATUS smbd_dirptr_lanman2_entry(TALLOC_CTX *ctx, if (_smb_fname != NULL) { struct smb_filename *name = NULL; - name = synthetic_smb_fname(ctx, fname, NULL, &smb_fname->st, 0); + name = synthetic_smb_fname(ctx, + fname, + NULL, + &smb_fname->st, + 0); if (name == NULL) { TALLOC_FREE(smb_fname); TALLOC_FREE(fname);