From: Ralph Boehme Date: Sun, 3 May 2020 13:07:05 +0000 (+0200) Subject: s3/rpc_server: fss: realign synthetic_smb_fname() args in snap_path_exists() X-Git-Tag: ldb-2.2.0~703 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b9af0ecb3a504bcea9beab2538322c9809e5f042;p=thirdparty%2Fsamba.git s3/rpc_server: fss: realign synthetic_smb_fname() args in snap_path_exists() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/rpc_server/fss/srv_fss_agent.c b/source3/rpc_server/fss/srv_fss_agent.c index e9672281211..f693aa4afbe 100644 --- a/source3/rpc_server/fss/srv_fss_agent.c +++ b/source3/rpc_server/fss/srv_fss_agent.c @@ -173,7 +173,11 @@ static bool snap_path_exists(TALLOC_CTX *ctx, struct messaging_context *msg_ctx, goto out; } - smb_fname = synthetic_smb_fname(service, sc->sc_path, NULL, NULL, 0); + smb_fname = synthetic_smb_fname(service, + sc->sc_path, + NULL, + NULL, + 0); if (smb_fname == NULL) { goto out; }