diff options
author | Sendil Kumar <sendilkumarn@live.com> | 2019-08-22 21:49:31 +0200 |
---|---|---|
committer | Sendil Kumar <sendilkumarn@live.com> | 2019-08-22 21:49:31 +0200 |
commit | e99c267f707776ff4dcc786d5bb2987a3546bfdf (patch) | |
tree | a1dd0b72d94f8fd4f56886531e9e2ba9f4db8645 | |
parent | 07e2ea98d8b97bbf33ce96ef4dd1a1d6929e5773 (diff) | |
download | nix-e99c267f707776ff4dcc786d5bb2987a3546bfdf.zip |
add readlinkat too
-rw-r--r-- | CHANGELOG.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ef6538d0..6d060eda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,9 +10,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). ([#1109](https://github.com/nix-rust/nix/pull/1109)) ```rust - use nix::fcntl::readlink; + use nix::fcntl::{readlink, readlinkat}; readlink!(&path); + readlinkat!(dirfd, &path); ``` ### Fixed |