From: Jim Meyering Date: Sat, 1 Jun 2002 09:38:41 +0000 (+0000) Subject: Remove use of D_TYPE_IN_DIRENT, now that that symbol has been renamed. X-Git-Tag: FILEUTILS-4_1_9~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3b96dac1d7f9e27be0273da611a2e56a074d3aca;p=thirdparty%2Fcoreutils.git Remove use of D_TYPE_IN_DIRENT, now that that symbol has been renamed. --- diff --git a/src/ls.c b/src/ls.c index 9aa9b47ee1..63497c3b82 100644 --- a/src/ls.c +++ b/src/ls.c @@ -158,11 +158,9 @@ int rpl_lstat PARAMS((const char *, struct stat *)); # define lstat(Name, Stat_buf) rpl_lstat(Name, Stat_buf) #endif -#if D_TYPE_IN_DIRENT && defined DTTOIF -# define HAVE_STRUCT_DIRENT_D_TYPE 1 +#if HAVE_STRUCT_DIRENT_D_TYPE && defined DTTOIF # define DT_INIT(Val) = Val #else -# define HAVE_STRUCT_DIRENT_D_TYPE 0 # define DT_INIT(Val) /* empty */ #endif