mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
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>
This commit is contained in:
parent
f401e67b60
commit
4f43a8673b
@ -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
|
||||
|
@ -1144,9 +1144,9 @@ typedef enum {
|
||||
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;
|
||||
|
||||
/* uv_fs_t is a subclass of uv_req_t. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user