head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2026.05.09.20.00.28; author vins; state Exp; branches; next ; commitid laUNdDpy1oiC3bFG; desc @@ 1.1 log @filesystems/fuse3: initial import Import fuse-3.18.2 as filesystems/fuse3. FUSE (Filesystem in Userspace) is a simple interface for userspace programs to export a virtual filesystem to the Linux kernel. Fuse also aims to provide a secure method for non privileged users to create and mount their own filesystem implementations. @ text @$NetBSD: patch-example_cuse__client.c,v 1.1 2026/05/06 17:08:48 vins Exp $ Fix ctype warning. --- example/cuse_client.c.orig 2026-05-06 16:55:14.227070883 +0000 +++ example/cuse_client.c @@@@ -106,7 +106,7 @@@@ int main(int argc, char **argv) return 1; } - cmd = tolower(argv[2][0]); + cmd = tolower((unsigned char)argv[2][0]); argc -= 3; argv += 3; @