From: Ulrich Drepper Date: Sat, 12 Aug 2000 08:42:47 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_1_93~239 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=977588cd9323ec624375de12bc050868991cc11b;p=thirdparty%2Fglibc.git Update. 2000-08-12 Ulrich Drepper * io/fts.c (fts_stat): Recognize DT_WHT only if S_IFWHT is also defined. --- diff --git a/ChangeLog b/ChangeLog index 2a44be92ddb..3db27aa51eb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-08-12 Ulrich Drepper + + * io/fts.c (fts_stat): Recognize DT_WHT only if S_IFWHT is also + defined. + 2000-08-12 Andreas Jaeger * sysdeps/unix/sysv/linux/i386/fcntl.c (__libc_fcntl): Try fcntl diff --git a/io/fts.c b/io/fts.c index 4c0eb7d8af8..0172af71078 100644 --- a/io/fts.c +++ b/io/fts.c @@ -816,7 +816,7 @@ fts_stat(sp, dp, p, follow) /* If user needs stat info, stat buffer already allocated. */ sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp; -#ifdef DT_WHT +#if defined DT_WHT && defined S_IFWHT /* * Whited-out files don't really exist. However, there's stat(2) file * mask for them, so we set it so that programs (i.e., find) don't have