From c893b9cd90b1f13657a27a7698a56d8adbbc23e4 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Thu, 30 Apr 2020 11:44:15 +0200 Subject: [PATCH] vfs_streams_depot: realign synthetic_smb_fname() to one arg per line Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/modules/vfs_streams_depot.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; -- 2.47.3