Released 2.7.0

This commit is contained in:
Miklos Szeredi 2007-07-02 11:29:19 +00:00
parent 37fb19c74f
commit d4428a57bc
6 changed files with 16 additions and 4 deletions

View File

@ -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

View File

@ -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)

View File

@ -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

View File

@ -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;
}

View File

@ -150,6 +150,7 @@ FUSE_2.7 {
fuse_fs_utimens;
fuse_fs_write;
fuse_register_module;
fuse_reply_iov;
fuse_version;
local:

View File

@ -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;