diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-06-23 16:28:05 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-23 16:28:05 +0200 |
commit | 93240d3aba4611dd966c5b9f7368d20612211486 (patch) | |
tree | b00bfed80c8ac4523424f1bdef1607f3c0513d4a /src/shared/copy.h | |
parent | 81cef14fce9c64afed600614403ecae7cd79781d (diff) |
coredump: never write more than the configured processing size limit to disk
Diffstat (limited to 'src/shared/copy.h')
-rw-r--r-- | src/shared/copy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/copy.h b/src/shared/copy.h index 1d5e0adc53..0bf2598f60 100644 --- a/src/shared/copy.h +++ b/src/shared/copy.h @@ -23,4 +23,4 @@ int copy_file(const char *from, const char *to, int flags, mode_t mode); int copy_tree(const char *from, const char *to, bool merge); -int copy_bytes(int fdf, int fdt); +int copy_bytes(int fdf, int fdt, off_t max_bytes); |