diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-11-06 21:20:32 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-11-07 01:19:56 +0100 |
commit | 84ee0960443b795936026239f8c0ff8429aed699 (patch) | |
tree | 100785517a3bdfe3b9950ac25f19a9abbed72d09 /src/shared | |
parent | cda134ab1eac84f874aacf8e885a07112a7fd5ce (diff) |
copy: change error code when hitting copy limit to EFBIG
After all, this is about files, not arguments, hence EFBIG is more
appropriate than E2BIG
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/copy.c b/src/shared/copy.c index a863246b2b..abb7fbc52b 100644 --- a/src/shared/copy.c +++ b/src/shared/copy.c @@ -37,7 +37,7 @@ int copy_bytes(int fdf, int fdt, off_t max_bytes) { if (max_bytes != (off_t) -1) { if (max_bytes <= 0) - return -E2BIG; + return -EFBIG; if ((off_t) m > max_bytes) m = (size_t) max_bytes; |