From: Ralph Boehme Date: Sun, 3 May 2020 13:06:12 +0000 (+0200) Subject: vfs_xattr_tdb: realign synthetic_smb_fname() args in xattr_tdb_get_file_id() X-Git-Tag: ldb-2.2.0~706 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4381def0b7d70e5358ee8aeaf2865184f3b8e27a;p=thirdparty%2Fsamba.git vfs_xattr_tdb: realign synthetic_smb_fname() args in xattr_tdb_get_file_id() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_xattr_tdb.c b/source3/modules/vfs_xattr_tdb.c index c87be90f940..65ad33d7b6c 100644 --- a/source3/modules/vfs_xattr_tdb.c +++ b/source3/modules/vfs_xattr_tdb.c @@ -38,7 +38,11 @@ static int xattr_tdb_get_file_id(struct vfs_handle_struct *handle, TALLOC_CTX *frame = talloc_stackframe(); struct smb_filename *smb_fname; - smb_fname = synthetic_smb_fname(frame, path, NULL, NULL, 0); + smb_fname = synthetic_smb_fname(frame, + path, + NULL, + NULL, + 0); if (smb_fname == NULL) { TALLOC_FREE(frame); errno = ENOMEM;