diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-02-17 13:51:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-17 13:51:58 +0100 |
commit | e4363cd8ae9e0db02aeb4fa45cc785925e78c80e (patch) | |
tree | c1072ba3130a025250dc06df8b2ca2e726838a57 /src/coredump/coredump.c | |
parent | ea2aa0343f91f3cd2842129e94dbf05525732e7f (diff) | |
parent | aa10469e17bd145c5d5c8c9b93438a0ee74d1ecf (diff) |
Merge pull request #5333 from poettering/machined-copy-files-userns
machined userns fixes
Diffstat (limited to 'src/coredump/coredump.c')
-rw-r--r-- | src/coredump/coredump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c index 1bb1dbbe8d..d76d49a679 100644 --- a/src/coredump/coredump.c +++ b/src/coredump/coredump.c @@ -352,7 +352,7 @@ static int save_external_coredump( if (fd < 0) return log_error_errno(fd, "Failed to create temporary file for coredump %s: %m", fn); - r = copy_bytes(input_fd, fd, max_size, false); + r = copy_bytes(input_fd, fd, max_size, 0); if (r < 0) { log_error_errno(r, "Cannot store coredump of %s (%s): %m", context[CONTEXT_PID], context[CONTEXT_COMM]); goto fail; |