about summary refs log tree commit diff
path: root/library/std/src/sys/unix/ext/net/stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sys/unix/ext/net/stream.rs')
-rw-r--r--library/std/src/sys/unix/ext/net/stream.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/std/src/sys/unix/ext/net/stream.rs b/library/std/src/sys/unix/ext/net/stream.rs
index 68e8429dd3b..49f16861afc 100644
--- a/library/std/src/sys/unix/ext/net/stream.rs
+++ b/library/std/src/sys/unix/ext/net/stream.rs
@@ -396,7 +396,7 @@ impl UnixStream {
         target_os = "openbsd",
         target_env = "uclibc",
     ))]
-    #[unstable(feature = "unix_socket_ancillary_data", issue = "none")]
+    #[unstable(feature = "unix_socket_ancillary_data", issue = "76915")]
     pub fn set_passcred(&self, passcred: bool) -> io::Result<()> {
         self.0.set_passcred(passcred)
     }
@@ -421,7 +421,7 @@ impl UnixStream {
         target_os = "openbsd",
         target_env = "uclibc",
     ))]
-    #[unstable(feature = "unix_socket_ancillary_data", issue = "none")]
+    #[unstable(feature = "unix_socket_ancillary_data", issue = "76915")]
     pub fn passcred(&self) -> io::Result<bool> {
         self.0.passcred()
     }
@@ -550,7 +550,7 @@ impl UnixStream {
         target_os = "solaris",
         target_env = "uclibc",
     ))]
-    #[unstable(feature = "unix_socket_ancillary_data", issue = "none")]
+    #[unstable(feature = "unix_socket_ancillary_data", issue = "76915")]
     pub fn recv_vectored_with_ancillary(
         &self,
         bufs: &mut [IoSliceMut<'_>],
@@ -606,7 +606,7 @@ impl UnixStream {
         target_os = "solaris",
         target_env = "uclibc",
     ))]
-    #[unstable(feature = "unix_socket_ancillary_data", issue = "none")]
+    #[unstable(feature = "unix_socket_ancillary_data", issue = "76915")]
     pub fn send_vectored_with_ancillary(
         &self,
         bufs: &mut [IoSliceMut<'_>],