Skip to content

Commit 862d89e

Browse files
committed
Add tracking issue for unix_chown
1 parent 4840f67 commit 862d89e

File tree

1 file changed

+3
-3
lines changed
  • library/std/src/os/unix

1 file changed

+3
-3
lines changed

library/std/src/os/unix/fs.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ impl DirBuilderExt for fs::DirBuilder {
947947
/// Ok(())
948948
/// }
949949
/// ```
950-
#[unstable(feature = "unix_chown", issue = "none")]
950+
#[unstable(feature = "unix_chown", issue = "88989")]
951951
pub fn chown<P: AsRef<Path>>(dir: P, uid: Option<u32>, gid: Option<u32>) -> io::Result<()> {
952952
sys::fs::chown(dir.as_ref(), uid.unwrap_or(u32::MAX), gid.unwrap_or(u32::MAX))
953953
}
@@ -968,7 +968,7 @@ pub fn chown<P: AsRef<Path>>(dir: P, uid: Option<u32>, gid: Option<u32>) -> io::
968968
/// Ok(())
969969
/// }
970970
/// ```
971-
#[unstable(feature = "unix_chown", issue = "none")]
971+
#[unstable(feature = "unix_chown", issue = "88989")]
972972
pub fn fchown<F: AsFd>(fd: F, uid: Option<u32>, gid: Option<u32>) -> io::Result<()> {
973973
sys::fs::fchown(fd.as_fd().as_raw_fd(), uid.unwrap_or(u32::MAX), gid.unwrap_or(u32::MAX))
974974
}
@@ -989,7 +989,7 @@ pub fn fchown<F: AsFd>(fd: F, uid: Option<u32>, gid: Option<u32>) -> io::Result<
989989
/// Ok(())
990990
/// }
991991
/// ```
992-
#[unstable(feature = "unix_chown", issue = "none")]
992+
#[unstable(feature = "unix_chown", issue = "88989")]
993993
pub fn lchown<P: AsRef<Path>>(dir: P, uid: Option<u32>, gid: Option<u32>) -> io::Result<()> {
994994
sys::fs::lchown(dir.as_ref(), uid.unwrap_or(u32::MAX), gid.unwrap_or(u32::MAX))
995995
}

0 commit comments

Comments
 (0)