From 6a78e9cbadf42872c3e78cc0cc3884dddd81d71c Mon Sep 17 00:00:00 2001 From: Christos Zoulas Date: Sat, 24 Jul 2004 19:55:17 +0000 Subject: [PATCH] better detection of utime/utimes from ian@wasabisystems.com --- src/magic.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/magic.c b/src/magic.c index 2f57892c..0ecf2d30 100644 --- a/src/magic.c +++ b/src/magic.c @@ -42,14 +42,14 @@ #include #endif -#if defined(HAVE_UTIME) +#if defined(HAVE_UTIMES) +# include +#elif defined(HAVE_UTIME) # if defined(HAVE_SYS_UTIME_H) # include # elif defined(HAVE_UTIME_H) # include # endif -#elif defined(HAVE_UTIMES) -# include #endif #ifdef HAVE_UNISTD_H @@ -65,7 +65,7 @@ #include "patchlevel.h" #ifndef lint -FILE_RCSID("@(#)$Id: magic.c,v 1.21 2004/06/04 14:40:20 christos Exp $") +FILE_RCSID("@(#)$Id: magic.c,v 1.22 2004/07/24 19:55:17 christos Exp $") #endif /* lint */ #ifdef __EMX__ -- 2.50.1