From: Jim Meyering Date: Tue, 10 Jan 2006 07:31:21 +0000 (+0000) Subject: (gobble_file): Use DTTOIF only if it's defined. X-Git-Tag: v6.0~943 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f09a4ffe18dc8704da488c83f5b0b038dbec58e5;p=thirdparty%2Fcoreutils.git (gobble_file): Use DTTOIF only if it's defined. This is necessary for Dragonfly. Patch by Joerg Sonnenberger. --- diff --git a/src/ls.c b/src/ls.c index 83a16fbcd2..39f07b5244 100644 --- a/src/ls.c +++ b/src/ls.c @@ -1,5 +1,5 @@ /* `dir', `vdir' and `ls' directory listing programs for GNU. - Copyright (C) 85, 88, 90, 91, 1995-2005 Free Software Foundation, Inc. + Copyright (C) 85, 88, 90, 91, 1995-2006 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2715,7 +2715,7 @@ gobble_file (char const *name, enum filetype type, bool command_line_arg, else { f->filetype = type; -#if HAVE_STRUCT_DIRENT_D_TYPE +#if HAVE_STRUCT_DIRENT_D_TYPE && defined DTTOIF f->stat.st_mode = DTTOIF (type); #endif blocks = 0;