From: Jim Meyering Date: Wed, 13 Apr 1994 15:26:17 +0000 (+0000) Subject: . X-Git-Tag: textutils-1_12_1~723 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=baaac7ac25ea615dfd014acb9fbcad56f0dceb6e;p=thirdparty%2Fcoreutils.git . --- diff --git a/src/cp.c b/src/cp.c index fceee953c1..b190c6416c 100644 --- a/src/cp.c +++ b/src/cp.c @@ -1182,8 +1182,7 @@ copy_reg (src_path, dst_path) /* If the file has fewer blocks than would normally be needed for a file of its size, then at least one of the blocks in the file is a hole. */ - if (S_ISREG (sb.st_mode) && - sb.st_size - (sb.st_blocks * DEV_BSIZE) >= DEV_BSIZE) + if (S_ISREG (sb.st_mode) && sb.st_size > sb.st_blocks * DEV_BSIZE) make_holes = 1; } #endif