about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2021-11-10 06:02:55 +0100
committerGitHub <noreply@github.com>2021-11-10 06:02:55 +0100
commitebd15290a277205ea436daef839d5deac64ab7c6 (patch)
tree06374118f95db6f51484165717d186d253112cb8
parent5bc09362dc90a9c4037907c0bb8e0773268344b1 (diff)
parentc0fbadaba395e4006e2d9dc8f2f8461e754c0b80 (diff)
downloadrust-ebd15290a277205ea436daef839d5deac64ab7c6.tar.gz
rust-ebd15290a277205ea436daef839d5deac64ab7c6.zip
Rollup merge of #90748 - cuviper:track-setgroups, r=dtolnay
Add a real tracking issue for `CommandExt::groups`

The `unstable` attribute referenced the closed RFE #38527, so I filed tracking issue #90747.
-rw-r--r--library/std/src/os/unix/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/process.rs b/library/std/src/os/unix/process.rs
index 286a7c3b386..01b8303a6c3 100644
--- a/library/std/src/os/unix/process.rs
+++ b/library/std/src/os/unix/process.rs
@@ -39,7 +39,7 @@ pub trait CommandExt: Sealed {
 
     /// Sets the supplementary group IDs for the calling process. Translates to
     /// a `setgroups` call in the child process.
-    #[unstable(feature = "setgroups", issue = "38527", reason = "")]
+    #[unstable(feature = "setgroups", issue = "90747")]
     fn groups(
         &mut self,
         #[cfg(not(target_os = "vxworks"))] groups: &[u32],