Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-10]: src/lib/librefuse Pull up following revision(s) (requested b...



details:   https://anonhg.NetBSD.org/src/rev/2a21df9f5892
branches:  netbsd-10
changeset: 374471:2a21df9f5892
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Apr 25 15:30:09 2023 +0000

description:
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)

diffstat:

 lib/librefuse/fuse.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 84bb8eddd6ed -r 2a21df9f5892 lib/librefuse/fuse.h
--- a/lib/librefuse/fuse.h      Tue Apr 25 15:25:36 2023 +0000
+++ b/lib/librefuse/fuse.h      Tue Apr 25 15:30:09 2023 +0000
@@ -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



Home | Main Index | Thread Index | Old Index