* Fixed installation directory for udev rules.
+* Fixed compilation with LTO.
+
libfuse 3.1.1 (2017-08-06)
==========================
/* Explicit prototype to prevent compiler warnings
(fuse.h only defines fuse_new()) */
-struct fuse *fuse_new_31(struct fuse_args *args, const struct fuse_operations *op,
- size_t op_size, void *private_data);
FUSE_SYMVER(".symver fuse_new_31,fuse_new@@FUSE_3.1");
struct fuse *fuse_new_31(struct fuse_args *args,
const struct fuse_operations *op,
struct fuse_chan *ch);
void fuse_session_process_buf_int(struct fuse_session *se,
const struct fuse_buf *buf, struct fuse_chan *ch);
+
+struct fuse *fuse_new_31(struct fuse_args *args, const struct fuse_operations *op,
+ size_t op_size, void *private_data);
}
- fuse = fuse_new(&args, op, op_size, user_data);
+ fuse = fuse_new_31(&args, op, op_size, user_data);
if (fuse == NULL) {
res = 1;
goto out1;