Submitted by: Adam Shore Date: 2014-08-22 Inital Package Version: 8.23 Description: Adds warning when copying files too large diff --git a/src/copy.c b/src/copy.c index 26d5bdd..64e1d61 100644 --- a/src/copy.c +++ b/src/copy.c @@ -226,6 +226,10 @@ sparse_copy (int src_fd, int dest_fd, char *buf, size_t buf_size, *last_write_made_hole = make_hole; } + if (!max_n_read) + error (0, 0, _("warning: could not copy all of %s, file too large"), + quote (src_name)); + return true; }