From 86231f04f0d7e84566666e16b503c96f9c7c04c1 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 3 Feb 2006 05:26:34 +0000 Subject: [__NR_futimesat] (futimesat): If file is NULL use __futimes. --- sysdeps/unix/sysv/linux/futimesat.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sysdeps') diff --git a/sysdeps/unix/sysv/linux/futimesat.c b/sysdeps/unix/sysv/linux/futimesat.c index 514f456927..7c96b78045 100644 --- a/sysdeps/unix/sysv/linux/futimesat.c +++ b/sysdeps/unix/sysv/linux/futimesat.c @@ -42,6 +42,9 @@ futimesat (fd, file, tvp) if (__have_atfcts >= 0) # endif { + if (file == NULL) + return __futimes (fd, tvp); + result = INLINE_SYSCALL (futimesat, 3, fd, file, tvp); # ifndef __ASSUME_ATFCTS if (result == -1 && errno == ENOSYS) -- cgit 1.4.1