diff options
Diffstat (limited to 'example')
-rw-r--r-- | example/cusexmp.c | 2 | ||||
-rw-r--r-- | example/fioc.c | 2 | ||||
-rw-r--r-- | example/fsel.c | 2 | ||||
-rw-r--r-- | example/fusexmp.c | 2 | ||||
-rw-r--r-- | example/fusexmp_fh.c | 7 | ||||
-rw-r--r-- | example/hello.c | 2 | ||||
-rw-r--r-- | example/hello_ll.c | 2 | ||||
-rw-r--r-- | example/null.c | 2 |
8 files changed, 8 insertions, 13 deletions
diff --git a/example/cusexmp.c b/example/cusexmp.c index 01fcdf7..b69f97c 100644 --- a/example/cusexmp.c +++ b/example/cusexmp.c @@ -9,7 +9,7 @@ gcc -Wall cusexmp.c `pkg-config fuse --cflags --libs` -o cusexmp */ -#define FUSE_USE_VERSION 29 +#define FUSE_USE_VERSION 30 #include <cuse_lowlevel.h> #include <fuse_opt.h> diff --git a/example/fioc.c b/example/fioc.c index bee40b9..849bd5d 100644 --- a/example/fioc.c +++ b/example/fioc.c @@ -9,7 +9,7 @@ gcc -Wall fioc.c `pkg-config fuse --cflags --libs` -o fioc */ -#define FUSE_USE_VERSION 26 +#define FUSE_USE_VERSION 30 #include <fuse.h> #include <stdlib.h> diff --git a/example/fsel.c b/example/fsel.c index 9cf0221..bddc1aa 100644 --- a/example/fsel.c +++ b/example/fsel.c @@ -9,7 +9,7 @@ gcc -Wall fsel.c `pkg-config fuse --cflags --libs` -o fsel */ -#define FUSE_USE_VERSION 29 +#define FUSE_USE_VERSION 30 #include <fuse.h> #include <unistd.h> diff --git a/example/fusexmp.c b/example/fusexmp.c index dca8a46..42a8134 100644 --- a/example/fusexmp.c +++ b/example/fusexmp.c @@ -9,7 +9,7 @@ gcc -Wall fusexmp.c `pkg-config fuse --cflags --libs` -o fusexmp */ -#define FUSE_USE_VERSION 26 +#define FUSE_USE_VERSION 30 #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/example/fusexmp_fh.c b/example/fusexmp_fh.c index 1ba9dbc..eea6b9b 100644 --- a/example/fusexmp_fh.c +++ b/example/fusexmp_fh.c @@ -9,7 +9,7 @@ gcc -Wall fusexmp_fh.c `pkg-config fuse --cflags --libs` -lulockmgr -o fusexmp_fh */ -#define FUSE_USE_VERSION 26 +#define FUSE_USE_VERSION 30 #ifdef HAVE_CONFIG_H #include <config.h> @@ -553,11 +553,6 @@ static struct fuse_operations xmp_oper = { #endif .lock = xmp_lock, .flock = xmp_flock, - - .flag_nullpath_ok = 1, -#if HAVE_UTIMENSAT - .flag_utime_omit_ok = 1, -#endif }; int main(int argc, char *argv[]) diff --git a/example/hello.c b/example/hello.c index bcb6b4c..b31fbe5 100644 --- a/example/hello.c +++ b/example/hello.c @@ -8,7 +8,7 @@ gcc -Wall hello.c `pkg-config fuse --cflags --libs` -o hello */ -#define FUSE_USE_VERSION 26 +#define FUSE_USE_VERSION 30 #include <fuse.h> #include <stdio.h> diff --git a/example/hello_ll.c b/example/hello_ll.c index 1405441..baf41bc 100644 --- a/example/hello_ll.c +++ b/example/hello_ll.c @@ -8,7 +8,7 @@ gcc -Wall hello_ll.c `pkg-config fuse --cflags --libs` -o hello_ll */ -#define FUSE_USE_VERSION 26 +#define FUSE_USE_VERSION 30 #include <fuse_lowlevel.h> #include <stdio.h> diff --git a/example/null.c b/example/null.c index b72cf4d..4e2bb8f 100644 --- a/example/null.c +++ b/example/null.c @@ -8,7 +8,7 @@ gcc -Wall null.c `pkg-config fuse --cflags --libs` -o null */ -#define FUSE_USE_VERSION 26 +#define FUSE_USE_VERSION 30 #include <fuse.h> #include <string.h> |