You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
fs.lchown is implemented as fchown(open(path, O_SYMLINK), ...) and therefore only avialable on Mac OS X. However Linux doesn't have O_SYMLINK but lchown.
Also I'm not sure what happens when you run open(path, O_SYMLINK) on a directory on Mac OS X, but on other UNIX systems you get EISDIR when attempting to open a directory.
The text was updated successfully, but these errors were encountered:
fs.lchown
is implemented asfchown(open(path, O_SYMLINK), ...)
and therefore only avialable on Mac OS X. However Linux doesn't haveO_SYMLINK
butlchown
.Also I'm not sure what happens when you run
open(path, O_SYMLINK)
on a directory on Mac OS X, but on other UNIX systems you getEISDIR
when attempting to open a directory.The text was updated successfully, but these errors were encountered: