-
Notifications
You must be signed in to change notification settings - Fork 1.1k
unix: setreuid/setregid #2803
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unix: setreuid/setregid #2803
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @Amanieu (or someone else) soon. Please see the contribution instructions for more information. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense, thanks!
@bors r+ |
📌 Commit fe8575f has been approved by |
@@ -761,6 +761,8 @@ setpgid | |||
setsid | |||
setsockopt | |||
setuid | |||
setreuid |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: ideally in alphabetical order
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! I'm going to fix once this is merged.
☀️ Test successful - checks-actions, checks-cirrus-freebsd-12, checks-cirrus-freebsd-13 |
Order `setre{g,u}id` alphabetically Pointed out in #2803 (comment)
This adds
setreuid()
andsetregid()
onunix
.