aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGleb Popov <6yearold@gmail.com>2025-06-24 14:46:32 +0300
committerBernd Schubert <bernd@bsbernd.com>2025-06-25 00:06:33 +0200
commit1016d1665ab0d8914171943fadfe85ed2f8e12ba (patch)
tree6bd07e20e44c871dc94f30aeaa623ebde432ff23
parentabd0a98485756caad5e7297669f8788c167b6b2b (diff)
downloadlibfuse-1016d1665ab0d8914171943fadfe85ed2f8e12ba.tar.gz
Catch up with fuse_send_data_iov() signature changes in the fallback case
Signed-off-by: Gleb Popov <6yearold@gmail.com>
-rw-r--r--lib/fuse_lowlevel.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c
index 8ddc288..722c11d 100644
--- a/lib/fuse_lowlevel.c
+++ b/lib/fuse_lowlevel.c
@@ -979,12 +979,13 @@ fallback:
#else
static int fuse_send_data_iov(struct fuse_session *se, struct fuse_chan *ch,
struct iovec *iov, int iov_count,
- struct fuse_bufvec *req_data, unsigned int flags)
+ struct fuse_bufvec *req_data, unsigned int flags,
+ fuse_req_t req)
{
size_t len = fuse_buf_size(req_data);
(void) flags;
- return fuse_send_data_iov_fallback(se, ch, iov, iov_count, req_data, len);
+ return fuse_send_data_iov_fallback(se, ch, iov, iov_count, req_data, len, req);
}
#endif