diff options
author | Dylan Reid <dgreid@chromium.org> | 2016-10-25 11:36:41 -0700 |
---|---|---|
committer | Dylan Reid <dgreid@chromium.org> | 2016-10-26 10:51:04 -0700 |
commit | 6c85f437c1df07a27e9e60c25c1322e9effc3a04 (patch) | |
tree | 93fcd3d67a505ba66d14734450d868efd3f526be /CHANGELOG.md | |
parent | 284c9f42fbd714d2bb30816c6b772f81df088461 (diff) | |
download | nix-6c85f437c1df07a27e9e60c25c1322e9effc3a04.zip |
Add setresuid and setresgid
These were both recently added to libc, add wrappers.
Signed-off-by: Dylan Reid <dgreid@chromium.org>
---
Changes since v2:
Updated function comments and CHANGELOG
Changes since v1:
Add function comments, update CHANGELOG
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a6f5b0fe..913d09ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Added function `epoll_create1` and bitflags `EpollCreateFlags` in `::nix::sys::epoll` in order to support `::libc::epoll_create1`. ([#410](https://github.com/nix-rust/nix/pull/410)) +- Added `setresuid` and `setresgid` for Linux in `::nix::unistd` + ([#448](https://github.com/nix-rust/nix/pull/448)) ### Changed - The minimum supported version of rustc is now 1.7.0. |