From: Todd C. Miller Date: Fri, 10 Sep 2004 16:31:15 +0000 (+0000) Subject: Fix Solatis futimes macro X-Git-Tag: SUDO_1_6_8p1~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc3bbe24c57d12a86b7feae6aa79a000a9f244e5;p=sudo Fix Solatis futimes macro --- diff --git a/compat.h b/compat.h index 6f0f8ba3f..a049a1a32 100644 --- a/compat.h +++ b/compat.h @@ -215,7 +215,7 @@ typedef struct sigaction sigaction_t; * Define futimes() in terms of futimesat() if needed. */ #if !defined(HAVE_FUTIMES) && defined(HAVE_FUTIMESAT) -# define futimes(_f, _p, _tv) futimesat(_f, NULL, _tv) +# define futimes(_f, _tv) futimesat(_f, NULL, _tv) # define HAVE_FUTIMES #endif