aboutsummaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorUjjwal Sharma <usharma1998@gmail.com>2018-07-06 10:05:23 +0530
committerSantiago Gimeno <santiago.gimeno@gmail.com>2018-07-07 15:48:44 +0200
commit4f43a8673b1e1ae6a5a02c77ee83d2af003b45bb (patch)
treee70ef8fd5dce4d3acb1631b7c47c151758259c9d /docs/src
parentf401e67b609458715d4e9895c1be11f8486a638f (diff)
downloadlibuv-4f43a8673b1e1ae6a5a02c77ee83d2af003b45bb.tar.gz
libuv-4f43a8673b1e1ae6a5a02c77ee83d2af003b45bb.zip
fs: change position of uv_fs_lchown
Change the position of UV_LS_LCHOWN, moving it to the end in order to go around a bug due to it's initial position. The original position of UV_LS_LCHOWN broke ABI compat, causing a binary using UV_FS_REALPATH or UV_FS_COPYFILE to break, as the values point to wrong function. Refs: https://github.com/yarnpkg/yarn/issues/6043 Fixes: https://github.com/libuv/libuv/issues/1908 PR-URL: https://github.com/libuv/libuv/pull/1913 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/fs.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/fs.rst b/docs/src/fs.rst
index a390f140..f383e5b1 100644
--- a/docs/src/fs.rst
+++ b/docs/src/fs.rst
@@ -92,9 +92,9 @@ Data types
UV_FS_READLINK,
UV_FS_CHOWN,
UV_FS_FCHOWN,
- UV_FS_LCHOWN,
UV_FS_REALPATH,
- UV_FS_COPYFILE
+ UV_FS_COPYFILE,
+ UV_FS_LCHOWN
} uv_fs_type;
.. c:type:: uv_dirent_t