mirror of
https://github.com/containers/podman.git
synced 2025-06-03 12:17:13 +08:00
Use /proc/self/gid_map as intended, not uid_map
GetKeepIDMapping never read the gid (as it intended) but reused the uid. Most likely a typo that never bothered anybody as uid and gid usually match. Signed-off-by: Simon Brakhane <simon@brakhane.net>
This commit is contained in:
@ -195,7 +195,7 @@ func GetKeepIDMapping(opts *namespaces.KeepIDUserNsOptions) (*stypes.IDMappingOp
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, 0, 0, err
|
return nil, 0, 0, err
|
||||||
}
|
}
|
||||||
gids, err := rootless.ReadMappingsProc("/proc/self/uid_map")
|
gids, err := rootless.ReadMappingsProc("/proc/self/gid_map")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, 0, 0, err
|
return nil, 0, 0, err
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user