diff options
author | Chad Austin <chad@chadaustin.me> | 2019-04-16 11:44:59 -0700 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2019-04-16 19:44:59 +0100 |
commit | 6439231f9ba8af9c0eab8dcda54a8fc31e63ae99 (patch) | |
tree | 2ba872c19ceab7e7e59977df21db2c9246f803f3 /example | |
parent | 7bf25b6987d84c816aebd5325b95cfa0d311b1e6 (diff) | |
download | libfuse-6439231f9ba8af9c0eab8dcda54a8fc31e63ae99.tar.gz |
Add documentation for opting out of opendir and releasedir (#391)
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 77dea14..580f52c 100644 --- a/example/printcap.c +++ b/example/printcap.c @@ -77,6 +77,8 @@ static void pc_init(void *userdata, printf("\tFUSE_CAP_PARALLEL_DIROPS\n"); if(conn->capable & FUSE_CAP_POSIX_ACL) printf("\tFUSE_CAP_POSIX_ACL\n"); + if(conn->capable & FUSE_CAP_NO_OPENDIR_SUPPORT) + printf("\tFUSE_CAP_NO_OPENDIR_SUPPORT\n"); fuse_session_exit(se); } |