From: Todd C. Miller Date: Sat, 11 Sep 2004 16:24:28 +0000 (+0000) Subject: Don't use HAVE_UTIME_H before including config.h. X-Git-Tag: SUDO_1_6_8p1~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6efac29fb097c5b7ff17debe502e24e7a66b3fbc;p=sudo Don't use HAVE_UTIME_H before including config.h. --- diff --git a/utimes.c b/utimes.c index 3942936e9..a50609479 100644 --- a/utimes.c +++ b/utimes.c @@ -18,14 +18,15 @@ #include #include #include + +#include "config.h" + #ifdef HAVE_UTIME_H # include #else # include #endif -#include "config.h" - #ifndef lint static const char rcsid[] = "$Sudo$"; #endif /* lint */