summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-11-06 21:20:32 +0100
committerLennart Poettering <lennart@poettering.net>2014-11-07 01:19:56 +0100
commit84ee0960443b795936026239f8c0ff8429aed699 (patch)
tree100785517a3bdfe3b9950ac25f19a9abbed72d09 /src/shared
parentcda134ab1eac84f874aacf8e885a07112a7fd5ce (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/copy.c b/src/shared/copy.c
index a863246b2..abb7fbc52 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;