diff options
Diffstat (limited to 'src/uvt_client.c')
-rw-r--r-- | src/uvt_client.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/uvt_client.c b/src/uvt_client.c index d31a35b..574001e 100644 --- a/src/uvt_client.c +++ b/src/uvt_client.c @@ -972,7 +972,8 @@ void uvt_client_ll_ioctl(fuse_req_t req, int cmd, void *arg, fuse_reply_err(req, EOPNOTSUPP); } else { ret = client->vt->ioctl_VT_SETMODE(client->vt_data, - (const struct vt_mode*)in_buf); + (const struct vt_mode*)in_buf, + fuse_req_ctx(req)->pid); if (ret) fuse_reply_err(req, abs(ret)); else |