From: Jeremy Allison Date: Fri, 2 Jul 2021 20:53:02 +0000 (-0700) Subject: s3: VFS: fruit: In fruit_stat_meta_netatalk(), ad_get() -> ad_get_meta_fsp(). X-Git-Tag: tevent-0.11.0~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d05087d4b8eae55997d97863458fd4490e7406b9;p=thirdparty%2Fsamba.git s3: VFS: fruit: In fruit_stat_meta_netatalk(), ad_get() -> ad_get_meta_fsp(). Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- diff --git a/source3/modules/vfs_fruit.c b/source3/modules/vfs_fruit.c index e20449aa476..8d886a9611e 100644 --- a/source3/modules/vfs_fruit.c +++ b/source3/modules/vfs_fruit.c @@ -3108,7 +3108,7 @@ static int fruit_stat_meta_netatalk(vfs_handle_struct *handle, return -1; } - ad = ad_get(talloc_tos(), handle, smb_fname, ADOUBLE_META); + ad = ad_get_meta_fsp(talloc_tos(), handle, smb_fname); if (ad == NULL) { DBG_INFO("fruit_stat_meta %s: %s\n", smb_fname_str_dbg(smb_fname), strerror(errno));