1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-10 22:24:12 +02:00
This commit is contained in:
Jim Meyering
1994-04-13 15:26:17 +00:00
parent 7960ad7d8b
commit baaac7ac25

View File

@@ -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