From 84e57e5c283a12beb30494d83c6a3ba3fdcb046a Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Fri, 2 Jan 2026 13:38:17 -0600 Subject: [PATCH] mergerfs_api.cpp --- src/mergerfs_api.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/mergerfs_api.cpp b/src/mergerfs_api.cpp index ac9095cc..a4544b68 100644 --- a/src/mergerfs_api.cpp +++ b/src/mergerfs_api.cpp @@ -109,7 +109,9 @@ mergerfs::api::relpath(const std::string &input_path_, int mergerfs::api::fullpath(const std::string &input_path_, - std::string &fullpath_) + std::string *fullpath_) { - return ::_lgetxattr(input_path_,"fullpath",fullpath_); + return fs::xattr::get(input_path_, + "user.mergerfs.fullpath", + fullpath_); }