mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-23 12:14:15 +08:00
Released 2.7.0
This commit is contained in:
parent
37fb19c74f
commit
d4428a57bc
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
|
||||
|
||||
* Released 2.7.0
|
||||
|
||||
2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
|
||||
|
||||
* Accept a NULL "op" for fuse_main(), etc. This is useful if
|
||||
filesystem is only invoking fuse to print a help message, or
|
||||
version. Fixes RedHat bugzilla #217343
|
||||
|
||||
2007-06-22 Miklos Szeredi <miklos@szeredi.hu>
|
||||
|
||||
* lib: fix locking when loading a filesystem module
|
||||
|
@ -1,4 +1,4 @@
|
||||
AC_INIT(fuse, 2.7.0-rc1)
|
||||
AC_INIT(fuse, 2.7.0)
|
||||
AC_CANONICAL_TARGET
|
||||
AM_INIT_AUTOMAKE
|
||||
AM_CONFIG_HEADER(include/config.h)
|
||||
|
@ -1,4 +1,4 @@
|
||||
AC_INIT(fuse-kernel, 2.7.0-rc1)
|
||||
AC_INIT(fuse-kernel, 2.7.0)
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
|
||||
AC_PROG_INSTALL
|
||||
|
@ -3009,7 +3009,8 @@ struct fuse_fs *fuse_fs_new(const struct fuse_operations *op, size_t op_size,
|
||||
}
|
||||
|
||||
fs->user_data = user_data;
|
||||
memcpy(&fs->op, op, op_size);
|
||||
if (op)
|
||||
memcpy(&fs->op, op, op_size);
|
||||
return fs;
|
||||
}
|
||||
|
||||
|
@ -150,6 +150,7 @@ FUSE_2.7 {
|
||||
fuse_fs_utimens;
|
||||
fuse_fs_write;
|
||||
fuse_register_module;
|
||||
fuse_reply_iov;
|
||||
fuse_version;
|
||||
|
||||
local:
|
||||
|
@ -140,7 +140,7 @@ static int check_nlink(const char *path, nlink_t nlink)
|
||||
return -1;
|
||||
}
|
||||
if (stbuf.st_nlink != nlink) {
|
||||
ERROR("nlink %i instead of %i", stbuf.st_nlink, nlink);
|
||||
ERROR("nlink %li instead of %li", stbuf.st_nlink, nlink);
|
||||
return -1;
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user