diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-02-21 21:35:50 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-02-21 21:35:50 +0100 |
commit | 1f210bdbe65dffcb6daeb9d9cddbf0b2d02f8718 (patch) | |
tree | 13fc5e73ea6bb4526ae32d3241432dd0fe2b7f63 /src/journal-remote/journal-remote.c | |
parent | c7044f9ed295ca2d83bcd0059a86a9443361eaec (diff) | |
parent | b58c888f30947b29730768c48ad402a2c5b65be9 (diff) |
Merge pull request #2650 from vcaputo/async_fsync
Perform journal offlines asynchronously when possible
Diffstat (limited to 'src/journal-remote/journal-remote.c')
-rw-r--r-- | src/journal-remote/journal-remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal-remote/journal-remote.c b/src/journal-remote/journal-remote.c index 3ce6fe27b3..44f9a9b44f 100644 --- a/src/journal-remote/journal-remote.c +++ b/src/journal-remote/journal-remote.c @@ -203,7 +203,7 @@ static int open_output(Writer *w, const char* host) { O_RDWR|O_CREAT, 0640, arg_compress, arg_seal, &w->metrics, - w->mmap, + w->mmap, NULL, NULL, &w->journal); if (r < 0) log_error_errno(r, "Failed to open output journal %s: %m", |