diff options
author | Luis Henriques <luis@igalia.com> | 2025-01-31 16:03:54 +0000 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-01-31 17:43:37 +0100 |
commit | 7f86f3be7148b15b71b63357813c66dd32177cf6 (patch) | |
tree | a5a7d516c75c6fb44f8b9bfa289cfb9f9ea6ef96 /lib | |
parent | 999aee6c0d6bf1ac67c3b89472f32fd1d384cf44 (diff) | |
download | libfuse-7f86f3be7148b15b71b63357813c66dd32177cf6.tar.gz |
fuse_lowlevel.c: drop incorrect comment from convert_to_conn_want_ext()
The comment is probably a leftover from older versions, as the application
of the 32 bits of conn.capable_ext to conn.capable is done before function
convert_to_conn_want_ext() is invoked.
Signed-off-by: Luis Henriques <luis@igalia.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fuse_lowlevel.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index 36baaa6..840142b 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -1999,8 +1999,6 @@ static bool want_flags_valid(uint64_t capable, uint64_t want) /** * Get the wanted capability flags, converting from old format if necessary - * Also applies the first 32 bits of capable_ext to capable - * */ static inline int convert_to_conn_want_ext(struct fuse_conn_info *conn, uint64_t want_ext_default) |