X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstat%2Ffchmodat.c;h=d94667aed5e1a4aa1e924bd89a8ba3aa3ec6aa16;hb=f3b6690a53c81a869173bbdce701972c952a4e82;hp=a894cb696bbad9852260a805a0a6a79d298cd18f;hpb=2736eb6caa70bb6e909d7d8ebbe145c2071435e0;p=musl diff --git a/src/stat/fchmodat.c b/src/stat/fchmodat.c index a894cb69..d94667ae 100644 --- a/src/stat/fchmodat.c +++ b/src/stat/fchmodat.c @@ -29,8 +29,10 @@ int fchmodat(int fd, const char *path, mode_t mode, int flag) __procfdname(proc, fd2); ret = __syscall(SYS_fstatat, AT_FDCWD, proc, &st, 0); - if (!ret && !S_ISLNK(st.st_mode)) - ret = __syscall(SYS_fchmodat, AT_FDCWD, proc, mode); + if (!ret) { + if (S_ISLNK(st.st_mode)) ret = -EOPNOTSUPP; + else ret = __syscall(SYS_fchmodat, AT_FDCWD, proc, mode); + } __syscall(SYS_close, fd2); return __syscall_ret(ret);