diff options
author | John Högberg <[email protected]> | 2018-03-19 13:18:08 +0100 |
---|---|---|
committer | John Högberg <[email protected]> | 2018-03-19 14:02:22 +0100 |
commit | f14a5306622994a6b49b25c63ec882a1551398ef (patch) | |
tree | f2e1c57288f586296138e9a2c305248c98434cd7 /erts/emulator/nifs/unix | |
parent | d171399bb5a0e9f4c6029564ece4fbf89f3c76f8 (diff) | |
download | otp-f14a5306622994a6b49b25c63ec882a1551398ef.tar.gz otp-f14a5306622994a6b49b25c63ec882a1551398ef.tar.bz2 otp-f14a5306622994a6b49b25c63ec882a1551398ef.zip |
Fix file:change_group/change_owner
It wasn't possible to change group/owner separately, and our test
suite lacked coverage for that.
ERL-589
Diffstat (limited to 'erts/emulator/nifs/unix')
-rw-r--r-- | erts/emulator/nifs/unix/unix_prim_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/nifs/unix/unix_prim_file.c b/erts/emulator/nifs/unix/unix_prim_file.c index 4a6c476882..1637f9cb71 100644 --- a/erts/emulator/nifs/unix/unix_prim_file.c +++ b/erts/emulator/nifs/unix/unix_prim_file.c @@ -687,7 +687,7 @@ posix_errno_t efile_set_permissions(const efile_path_t *path, Uint32 permissions return 0; } -posix_errno_t efile_set_owner(const efile_path_t *path, Uint32 owner, Uint32 group) { +posix_errno_t efile_set_owner(const efile_path_t *path, Sint32 owner, Sint32 group) { if(chown((const char*)path->data, owner, group) < 0) { return errno; } |