From: Jeremy Allison Date: Thu, 26 Mar 2020 00:17:30 +0000 (-0700) Subject: s3: smbd: Reformatting caller of rename_internals() to make it easer to see changed... X-Git-Tag: ldb-2.2.0~1153 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c53372a3ea79d0f799c99fe3a63c40d54d5ca01;p=thirdparty%2Fsamba.git s3: smbd: Reformatting caller of rename_internals() to make it easer to see changed parameters. Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index d169a59a620..9f8fa7f47f1 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -1702,11 +1702,16 @@ void reply_ntrename(struct smb_request *req) switch(rename_type) { case RENAME_FLAG_RENAME: - status = rename_internals(ctx, conn, req, - smb_fname_old, smb_fname_new, - attrs, False, src_has_wcard, - dest_has_wcard, - DELETE_ACCESS); + status = rename_internals(ctx, + conn, + req, + smb_fname_old, + smb_fname_new, + attrs, + false, + src_has_wcard, + dest_has_wcard, + DELETE_ACCESS); break; case RENAME_FLAG_HARD_LINK: if (src_has_wcard || dest_has_wcard) {