* lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
whether the current entry is a directory, so don't test it.
+2009-02-11 Jim Meyering <meyering@redhat.com>
+
+ fts: correct internal computation of nlinks (optimization-related)
+ * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
+ whether the current entry is a directory, so don't test it.
+
2009-02-10 Bruno Haible <bruno@clisp.org>
Tests for module 'uniwbrk/ulc-wordbreaks'.
to caller, when possible. */
set_stat_type (p->fts_statp, D_TYPE (dp));
fts_set_stat_required(p, !skip_stat);
- is_dir = (ISSET(FTS_PHYSICAL) && ISSET(FTS_NOSTAT)
+ is_dir = (ISSET(FTS_PHYSICAL)
&& DT_MUST_BE(dp, DT_DIR));
} else {
p->fts_info = fts_stat(sp, p, false);