1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-22 04:43:33 +02:00

(main): On systems with d_type, directories_first only

implies format_needs_type, not format_needs_stat.
This commit is contained in:
Jim Meyering
2006-05-03 10:03:58 +00:00
parent f0562bdf48
commit a99440c4ee

View File

@@ -1229,11 +1229,12 @@ main (int argc, char **argv)
format_needs_stat = sort_type == sort_time || sort_type == sort_size
|| format == long_format
|| print_block_size
|| directories_first;
|| print_block_size;
format_needs_type = (! format_needs_stat
&& (recursive || print_with_color
|| indicator_style != none));
&& (recursive
|| print_with_color
|| indicator_style != none
|| directories_first));
if (dired)
{