aboutsummaryrefslogtreecommitdiffstats
path: root/lib/cuse_lowlevel.c
diff options
context:
space:
mode:
authorBernd Schubert <bernd.schubert@fastmail.fm>2024-12-30 23:34:43 +0100
committerGitHub <noreply@github.com>2024-12-30 23:34:43 +0100
commit3d743029dc9bfeddcc4b2e8f7bffd98cd89c1026 (patch)
tree0bc5f6adb495da2ef7c8483454d193cca62a99c8 /lib/cuse_lowlevel.c
parent682e87dbc0a18a703fd4a746b5ef7ee22fb559cf (diff)
parent3f9d369d083cfeb0a01b9781772efcf9920bdfcb (diff)
downloadlibfuse-3d743029dc9bfeddcc4b2e8f7bffd98cd89c1026.tar.gz
Merge pull request #1081 from bsbernd/so-version-abi-compat
Increase the .so version, but also change back to previous ABI
Diffstat (limited to 'lib/cuse_lowlevel.c')
-rw-r--r--lib/cuse_lowlevel.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/cuse_lowlevel.c b/lib/cuse_lowlevel.c
index cd68787..5387f84 100644
--- a/lib/cuse_lowlevel.c
+++ b/lib/cuse_lowlevel.c
@@ -208,8 +208,10 @@ void cuse_lowlevel_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
}
se->conn.proto_major = arg->major;
se->conn.proto_minor = arg->minor;
- se->conn.capable = 0;
- se->conn.want = 0;
+
+ /* XXX This is not right.*/
+ se->conn.capable_ext = 0;
+ se->conn.want_ext = 0;
if (arg->major < 7) {
fuse_log(FUSE_LOG_ERR, "cuse: unsupported protocol version: %u.%u\n",