about summary refs log tree commit diff
path: root/library/std/src/os/unix/net/addr.rs
diff options
context:
space:
mode:
authorThomas de Zeeuw <thomasdezeeuw@gmail.com>2022-01-28 15:00:17 +0100
committerThomas de Zeeuw <thomasdezeeuw@gmail.com>2022-01-28 15:00:17 +0100
commit35f578fc789a14106b2e32b80846ecd62ccf9672 (patch)
tree4088dba1b8ee4468f8eeee543c60646793a6fd4b /library/std/src/os/unix/net/addr.rs
parent4acb8ac46c9ae4e28b4f9328202c4fdb93a6c6ea (diff)
downloadrust-35f578fc789a14106b2e32b80846ecd62ccf9672.tar.gz
rust-35f578fc789a14106b2e32b80846ecd62ccf9672.zip
Update tracking issue for unix_socket_creation
Diffstat (limited to 'library/std/src/os/unix/net/addr.rs')
-rw-r--r--library/std/src/os/unix/net/addr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/net/addr.rs b/library/std/src/os/unix/net/addr.rs
index 40ee8833bbf..9dbd4548bc9 100644
--- a/library/std/src/os/unix/net/addr.rs
+++ b/library/std/src/os/unix/net/addr.rs
@@ -159,7 +159,7 @@ impl SocketAddr {
     ///
     /// assert!(SocketAddr::from_path("/path/with/\0/bytes").is_err());
     /// ```
-    #[unstable(feature = "unix_socket_creation", issue = "65275")]
+    #[unstable(feature = "unix_socket_creation", issue = "93423")]
     pub fn from_path<P>(path: P) -> io::Result<SocketAddr>
     where
         P: AsRef<Path>,