Module Name:    src
Committed By:   martin
Date:           Tue Apr 25 15:30:10 UTC 2023

Modified Files:
        src/lib/librefuse [netbsd-10]: fuse.h

Log Message:
Pull up following revision(s) (requested by abs in ticket #146):

        lib/librefuse/fuse.h: revision 1.35

Fix incorrect test for FUSE_USE_VERSION 34
(Thanks to Mark Davies for report)


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.34.2.1 src/lib/librefuse/fuse.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/librefuse/fuse.h
diff -u src/lib/librefuse/fuse.h:1.34 src/lib/librefuse/fuse.h:1.34.2.1
--- src/lib/librefuse/fuse.h:1.34	Sat Jan 22 08:09:39 2022
+++ src/lib/librefuse/fuse.h	Tue Apr 25 15:30:09 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: fuse.h,v 1.34 2022/01/22 08:09:39 pho Exp $ */
+/* $NetBSD: fuse.h,v 1.34.2.1 2023/04/25 15:30:09 martin Exp $ */
 
 /*
  * Copyright © 2007 Alistair Crooks.  All rights reserved.
@@ -637,7 +637,7 @@ fuse_new(struct fuse_args *args, const s
 #		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

Reply via email to