summaryrefslogtreecommitdiff
path: root/lib/librefuse
diff options
context:
space:
mode:
authorabs <abs@NetBSD.org>2023-04-21 19:29:31 +0000
committerabs <abs@NetBSD.org>2023-04-21 19:29:31 +0000
commit0dcc932720b9642ae68c9d1e41edd98dc092fca9 (patch)
treee387623e825f5783e54a84472272e05ec3e24145 /lib/librefuse
parentb67db9fcc753e0a52570978dc3d74b97e519c81c (diff)
Fix incorrect test for FUSE_USE_VERSION 34
(Thanks to Mark Davies for report)
Diffstat (limited to 'lib/librefuse')
-rw-r--r--lib/librefuse/fuse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/librefuse/fuse.h b/lib/librefuse/fuse.h
index d41029affe6..2bfacbcf40d 100644
--- a/lib/librefuse/fuse.h
+++ b/lib/librefuse/fuse.h
@@ -1,4 +1,4 @@
-/* $NetBSD: fuse.h,v 1.34 2022/01/22 08:09:39 pho Exp $ */
+/* $NetBSD: fuse.h,v 1.35 2023/04/21 19:29:31 abs Exp $ */
/*
* Copyright © 2007 Alistair Crooks. All rights reserved.
@@ -637,7 +637,7 @@ fuse_new(struct fuse_args *args, const struct fuse_operations *op,
# define fuse_parse_cmdline fuse_parse_cmdline_v30
/* ===== FUSE 3.4 ===== */
-# elif FUSE_USE_VERSION >= 34
+# elif FUSE_USE_VERSION == 34
/* Types */
# define _FUSE_OP_VERSION__ 34
# define fuse_fill_dir_t fuse_fill_dir_t_v30