Skip to content
Commits on Source (4)
disorderfs (0.5.6-3) UNRELEASED; urgency=medium
disorderfs (0.5.7-1) unstable; urgency=medium
* Update standards version to 4.4.1, no changes needed.
[ Debian Janitor ]
* Bump debhelper from old 11 to 12.
* Re-export upstream signing key without extra signatures.
-- Debian Janitor <janitor@jelmer.uk> Fri, 01 Nov 2019 11:50:40 +0000
[ Holger Levsen ]
* New upstream release.
* Bump standards version to 4.5.0, no changes needed.
-- Holger Levsen <holger@debian.org> Tue, 21 Jan 2020 13:14:46 +0100
disorderfs (0.5.6-2) unstable; urgency=medium
......
......@@ -6,7 +6,7 @@ Uploaders:
Holger Levsen <holger@debian.org>,
Section: utils
Priority: optional
Standards-Version: 4.4.1
Standards-Version: 4.5.0
Rules-Requires-Root: no
Build-Depends:
asciidoc,
......
......@@ -43,7 +43,7 @@ extern "C" {
#include <sys/file.h>
#include <stddef.h>
#define DISORDERFS_VERSION "0.5.6"
#define DISORDERFS_VERSION "0.5.7"
namespace {
std::vector<std::string> bare_arguments;
......@@ -477,7 +477,8 @@ int main (int argc, char** argv)
};
disorderfs_fuse_operations.fsyncdir = [] (const char* path, int is_datasync, struct fuse_file_info* info) -> int {
// XXX: is it OK to just use fsync? Not clear on why FUSE has a separate fsyncdir operation
return wrap(is_datasync ? fdatasync(info->fh) : fsync(info->fh));
wrap(is_datasync ? fdatasync(info->fh) : fsync(info->fh));
return 0; // return value is ignored
};
disorderfs_fuse_operations.create = [] (const char* path, mode_t mode, struct fuse_file_info* info) -> int {
Guard g;
......