summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd-compat/bsd-misc.c')
-rw-r--r--openbsd-compat/bsd-misc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 829e0c075..059b6d3b3 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -129,7 +129,9 @@ utimensat(int fd, const char *path, const struct timespec times[2],
129 int flag) 129 int flag)
130{ 130{
131 struct timeval tv[2]; 131 struct timeval tv[2];
132# ifdef HAVE_FUTIMES
132 int ret, oflags = O_WRONLY; 133 int ret, oflags = O_WRONLY;
134# endif
133 135
134 tv[0].tv_sec = times[0].tv_sec; 136 tv[0].tv_sec = times[0].tv_sec;
135 tv[0].tv_usec = times[0].tv_nsec / 1000; 137 tv[0].tv_usec = times[0].tv_nsec / 1000;