diff options
| author | Albert Chen <hselin.chen@gmail.com> | 2019-11-27 01:36:30 -0800 |
|---|---|---|
| committer | Nikolaus Rath <Nikolaus@rath.org> | 2019-11-27 09:36:30 +0000 |
| commit | ada08d50a647adb37c77f2106e7adc0db6ab93d5 (patch) | |
| tree | c577291626b68ff962c6cc65820435861f5f8a56 /example | |
| parent | 4520a97286e53977d15825111365d46b99d5a836 (diff) | |
| download | libfuse-ada08d50a647adb37c77f2106e7adc0db6ab93d5.tar.gz | |
Added support for FUSE_EXPLICIT_INVAL_DATA to enable (#474)
Diffstat (limited to 'example')
| -rw-r--r-- | example/printcap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/example/printcap.c b/example/printcap.c index 580f52c..904542f 100644 --- a/example/printcap.c +++ b/example/printcap.c @@ -79,6 +79,8 @@ static void pc_init(void *userdata, printf("\tFUSE_CAP_POSIX_ACL\n"); if(conn->capable & FUSE_CAP_NO_OPENDIR_SUPPORT) printf("\tFUSE_CAP_NO_OPENDIR_SUPPORT\n"); + if(conn->capable & FUSE_CAP_EXPLICIT_INVAL_DATA) + printf("\tFUSE_CAP_EXPLICIT_INVAL_DATA\n"); fuse_session_exit(se); } |
