From: Ralph Boehme Date: Thu, 30 Apr 2020 09:44:15 +0000 (+0200) Subject: vfs_streams_depot: realign synthetic_smb_fname() to one arg per line X-Git-Tag: ldb-2.2.0~725 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c893b9cd90b1f13657a27a7698a56d8adbbc23e4;p=thirdparty%2Fsamba.git vfs_streams_depot: realign synthetic_smb_fname() to one arg per line Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_streams_depot.c b/source3/modules/vfs_streams_depot.c index eb1cb60aaea..a5e135b9a50 100644 --- a/source3/modules/vfs_streams_depot.c +++ b/source3/modules/vfs_streams_depot.c @@ -953,7 +953,11 @@ static bool collect_one_stream(const struct smb_filename *dirfname, goto out; } - smb_fname = synthetic_smb_fname(talloc_tos(), sname, NULL, NULL, 0); + smb_fname = synthetic_smb_fname(talloc_tos(), + sname, + NULL, + NULL, + 0); if (smb_fname == NULL) { state->status = NT_STATUS_NO_MEMORY; ret = false;