]> granicus.if.org Git - sudo/commitdiff
Fix Solatis futimes macro
authorTodd C. Miller <Todd.Miller@courtesan.com>
Fri, 10 Sep 2004 16:31:15 +0000 (16:31 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Fri, 10 Sep 2004 16:31:15 +0000 (16:31 +0000)
compat.h

index 6f0f8ba3ffbb33c99989a60ae364b77def7b6b10..a049a1a32f6a85cc341450f0cb19170aed429599 100644 (file)
--- 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