summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSendil Kumar <sendilkumarn@live.com>2019-08-22 21:49:31 +0200
committerSendil Kumar <sendilkumarn@live.com>2019-08-22 21:49:31 +0200
commite99c267f707776ff4dcc786d5bb2987a3546bfdf (patch)
treea1dd0b72d94f8fd4f56886531e9e2ba9f4db8645
parent07e2ea98d8b97bbf33ce96ef4dd1a1d6929e5773 (diff)
downloadnix-e99c267f707776ff4dcc786d5bb2987a3546bfdf.zip
add readlinkat too
-rw-r--r--CHANGELOG.md3
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