From ea0034f3bf8e5e3733f8193e708db83452cf15c0 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 7 Jan 2005 04:56:33 +0000 Subject: [PATCH] (__futimes): Use __set_errno. --- sysdeps/unix/sysv/linux/futimes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysdeps/unix/sysv/linux/futimes.c b/sysdeps/unix/sysv/linux/futimes.c index 27b453c605..0c4be2b67f 100644 --- a/sysdeps/unix/sysv/linux/futimes.c +++ b/sysdeps/unix/sysv/linux/futimes.c @@ -82,14 +82,14 @@ __futimes (int fd, const struct timeval tvp[2]) case ELOOP: case ENAMETOOLONG: case ENOTDIR: - errno = ENOSYS; + __set_errno (ENOSYS); break; case ENOENT: /* Validate the file descriptor by letting fcntl set errno to EBADF if it's bogus. Otherwise it's a /proc issue. */ if (INLINE_SYSCALL (fcntl, 3, fd, F_GETFD, 0) != -1) - errno = ENOSYS; + __set_errno (ENOSYS); break; } -- 2.43.5