diff options
author | bigbrotherwei <1965867461@qq.com> | 2024-01-17 23:58:27 +0800 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2024-01-20 14:08:07 +0000 |
commit | 0c12204145d43ad4683136379a130385ef16d166 (patch) | |
tree | 8220389cf0f0c45bb98c788c2728f5d01ec5e734 /include | |
parent | 2c736f516f28dfb5c58aff345c668a5ea6386295 (diff) | |
download | libfuse-0c12204145d43ad4683136379a130385ef16d166.tar.gz |
Add processing for FUSE_CAP_HANDLE_KILLPRIV and disable it by default
'FUSE_CAP_HANDLE_KILLPRIV' is not enabled by default anymore, as that
would be a sudden security issue introduced by a new ABI and API
compatible libfuse version.
Diffstat (limited to 'include')
-rw-r--r-- | include/fuse_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h index fedbaa9..bdbd7cb 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -363,7 +363,7 @@ struct fuse_loop_config_v1 { * setuid and setgid bits when a file is written, truncated, or * its owner is changed. * - * This feature is enabled by default when supported by the kernel. + * This feature is disabled by default. */ #define FUSE_CAP_HANDLE_KILLPRIV (1 << 20) |