]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(gobble_file): Use DTTOIF only if it's defined.
authorJim Meyering <jim@meyering.net>
Tue, 10 Jan 2006 07:31:21 +0000 (07:31 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 10 Jan 2006 07:31:21 +0000 (07:31 +0000)
This is necessary for Dragonfly.  Patch by Joerg Sonnenberger.

src/ls.c

index 83a16fbcd251095c151a8f4618a80e67dc8822ae..39f07b52442c3ddce7f93e4a5151edba00a162a7 100644 (file)
--- 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;