1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-26 02:30:35 +02:00

merge with 3.9p

This commit is contained in:
Jim Meyering
1994-10-20 16:16:39 +00:00
parent adeff820d3
commit 154bd660bb
9 changed files with 79 additions and 24 deletions
+8 -4
View File
@@ -491,10 +491,14 @@ count_entry (ent, top, last_dev)
}
else if (opt_all || top)
{
printf ("%ld\t%s\n", output_size == size_bytes ? size
: convert_blocks (size, output_size == size_kilobytes),
path->text);
fflush (stdout);
int print_only_dir_size = 1;
if (!print_only_dir_size)
{
printf ("%ld\t%s\n", output_size == size_bytes ? size
: convert_blocks (size, output_size == size_kilobytes),
path->text);
fflush (stdout);
}
}
return size;