diff options
Diffstat (limited to 'filesystems/fuse-wdfs/patches/patch-ab')
-rw-r--r-- | filesystems/fuse-wdfs/patches/patch-ab | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/filesystems/fuse-wdfs/patches/patch-ab b/filesystems/fuse-wdfs/patches/patch-ab new file mode 100644 index 00000000000..5220e0a52e2 --- /dev/null +++ b/filesystems/fuse-wdfs/patches/patch-ab @@ -0,0 +1,22 @@ +$NetBSD: patch-ab,v 1.1 2007/05/16 22:28:19 agc Exp $ + +--- src/wdfs-main.c 2007/05/16 22:24:29 1.1 ++++ src/wdfs-main.c 2007/05/16 22:24:54 +@@ -1209,7 +1209,7 @@ + + + /* just say hello when fuse takes over control. */ +-#if FUSE_VERSION >= 26 ++#if FUSE_USE_VERSION >= 26 + static void* wdfs_init(struct fuse_conn_info *conn) + #else + static void* wdfs_init() +@@ -1304,7 +1304,7 @@ + /* just a simple wrapper for fuse_main(), because the interface changed... */ + static int call_fuse_main(struct fuse_args *args) + { +-#if FUSE_VERSION >= 26 ++#if FUSE_USE_VERSION >= 26 + return fuse_main(args->argc, args->argv, &wdfs_operations, NULL); + #else + return fuse_main(args->argc, args->argv, &wdfs_operations); |