(__futimes): Use __set_errno.

This commit is contained in:
Ulrich Drepper 2005-01-07 04:56:33 +00:00
parent 1e6a5f2fd2
commit ea0034f3bf
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}