From 6d3bd27220c80eb58a11b75054fbbcf67e50cc28 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 27 Dec 2025 02:25:18 +0900 Subject: cmd/sharefs: expand fuse_main This change should not change behaviour other than making output more consistent. Signed-off-by: Ophestra --- cmd/sharefs/fuse-operations.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cmd/sharefs/fuse-operations.h') diff --git a/cmd/sharefs/fuse-operations.h b/cmd/sharefs/fuse-operations.h index 9abc47ce..edcfb2a7 100644 --- a/cmd/sharefs/fuse-operations.h +++ b/cmd/sharefs/fuse-operations.h @@ -1,9 +1,9 @@ -#define FUSE_USE_VERSION FUSE_MAKE_VERSION(3, 4) +#define FUSE_USE_VERSION FUSE_MAKE_VERSION(3, 12) #include #include /* for fuse_cmdline_help */ -#if (FUSE_VERSION < FUSE_MAKE_VERSION(3, 4)) -#error This package requires libfuse >= v3.4 +#if (FUSE_VERSION < FUSE_MAKE_VERSION(3, 12)) +#error This package requires libfuse >= v3.12 #endif #define SHAREFS_MEDIA_RW_ID (1 << 10) - 1 /* owning gid presented to userspace */ -- cgit v1.3.1