diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2021-05-29 18:08:52 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-08-10 22:15:31 +0200 |
commit | 2e3a1e0f028ae5498d96a4a3618a3533e062d2eb (patch) | |
tree | 9db11a0c0e5743069106e83bd2a9d3639dd40e38 /utils | |
parent | ffead1cbcaa1db5db525403043e27d618af8752b (diff) | |
download | hurd-2e3a1e0f028ae5498d96a4a3618a3533e062d2eb.tar.gz hurd-2e3a1e0f028ae5498d96a4a3618a3533e062d2eb.tar.bz2 hurd-2e3a1e0f028ae5498d96a4a3618a3533e062d2eb.zip |
Remove the concept of process owner
Now that it's completely unused.
procinfo.owner is now simply set to the first UID that a process has.
proc_setowner () is kept for compatibility, but now does nothing.
The clients still try to call it, though, for compatibility with older
proc server versions.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/login.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/login.c b/utils/login.c index 506fdaf2..5fd5afc7 100644 --- a/utils/login.c +++ b/utils/login.c @@ -682,6 +682,7 @@ main(int argc, char *argv[]) } } + /* Try proc_setowner () for compatibility with older proc server. */ if (ugids.eff_uids.num > 0) proc_setowner (proc_server, ugids.eff_uids.ids[0], 0); else |