Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility to next FUSE release #2

Closed
0x4d4c opened this issue Mar 25, 2019 · 1 comment
Closed

Compatibility to next FUSE release #2

0x4d4c opened this issue Mar 25, 2019 · 1 comment

Comments

@0x4d4c
Copy link

0x4d4c commented Mar 25, 2019

The current master branch of libfuse contains changes breaking the compatibility to Fusepp. The ChangeLog states:

Changed ioctl commands to "unsigned int"

In my tests, the only change required to be able to use Fusepp again was to change line 78 in Fuse.h from

typedef int(*t_ioctl) (const char *, int cmd, void *arg,

to

typedef int(*t_ioctl) (const char *, unsigned int cmd, void *arg,

Up to the latest tagged version 3.4.2 of libfuse everything works fine, but I guess the next release requires an update of Fusepp.

@jachappell
Copy link
Owner

Updated to be compatible with libfuse 3.5.0. Thanks for the heads up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants