From: Jim Meyering Date: Fri, 14 Apr 2006 16:11:01 +0000 (+0000) Subject: (fts_build): #if-0-out a block of unused code. Patch via glibc. X-Git-Tag: v6.0~492 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=091c01208936c07ad7dec561397cd65eff647a1e;p=thirdparty%2Fcoreutils.git (fts_build): #if-0-out a block of unused code. Patch via glibc. --- diff --git a/lib/fts.c b/lib/fts.c index fa78413720..5acec826f1 100644 --- a/lib/fts.c +++ b/lib/fts.c @@ -956,6 +956,10 @@ mem1: saved_errno = errno; p->fts_flags |= FTS_ISW; #endif +#if 0 + /* Unreachable code. cderrno is only ever set to a nonnull + value if dirp is closed at the same time. But then we + cannot enter this loop. */ if (cderrno) { if (nlinks) { p->fts_info = FTS_NS; @@ -972,7 +976,9 @@ mem1: saved_errno = errno; p->fts_accpath = ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name; p->fts_info = FTS_NSOK; - } else { + } else +#endif + { /* Build a file name for fts_stat to stat. */ if (ISSET(FTS_NOCHDIR)) { p->fts_accpath = p->fts_path;