about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2021-09-15 13:09:54 -0700
committerJosh Triplett <josh@joshtriplett.org>2021-09-15 13:09:54 -0700
commit862d89e3b5ba092d95586fc2a33b23d1c8672087 (patch)
tree5781a16e6068becf1fd167906a00a8accaad7619
parent4840f67fcbe02fe6428a0a29bcf329401242b739 (diff)
downloadrust-862d89e3b5ba092d95586fc2a33b23d1c8672087.tar.gz
rust-862d89e3b5ba092d95586fc2a33b23d1c8672087.zip
Add tracking issue for unix_chown
-rw-r--r--library/std/src/os/unix/fs.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/std/src/os/unix/fs.rs b/library/std/src/os/unix/fs.rs
index c26f6a182b7..30eead9b059 100644
--- a/library/std/src/os/unix/fs.rs
+++ b/library/std/src/os/unix/fs.rs
@@ -947,7 +947,7 @@ impl DirBuilderExt for fs::DirBuilder {
 ///     Ok(())
 /// }
 /// ```
-#[unstable(feature = "unix_chown", issue = "none")]
+#[unstable(feature = "unix_chown", issue = "88989")]
 pub fn chown<P: AsRef<Path>>(dir: P, uid: Option<u32>, gid: Option<u32>) -> io::Result<()> {
     sys::fs::chown(dir.as_ref(), uid.unwrap_or(u32::MAX), gid.unwrap_or(u32::MAX))
 }
@@ -968,7 +968,7 @@ pub fn chown<P: AsRef<Path>>(dir: P, uid: Option<u32>, gid: Option<u32>) -> io::
 ///     Ok(())
 /// }
 /// ```
-#[unstable(feature = "unix_chown", issue = "none")]
+#[unstable(feature = "unix_chown", issue = "88989")]
 pub fn fchown<F: AsFd>(fd: F, uid: Option<u32>, gid: Option<u32>) -> io::Result<()> {
     sys::fs::fchown(fd.as_fd().as_raw_fd(), uid.unwrap_or(u32::MAX), gid.unwrap_or(u32::MAX))
 }
@@ -989,7 +989,7 @@ pub fn fchown<F: AsFd>(fd: F, uid: Option<u32>, gid: Option<u32>) -> io::Result<
 ///     Ok(())
 /// }
 /// ```
-#[unstable(feature = "unix_chown", issue = "none")]
+#[unstable(feature = "unix_chown", issue = "88989")]
 pub fn lchown<P: AsRef<Path>>(dir: P, uid: Option<u32>, gid: Option<u32>) -> io::Result<()> {
     sys::fs::lchown(dir.as_ref(), uid.unwrap_or(u32::MAX), gid.unwrap_or(u32::MAX))
 }