diff options
author | Ian Lewis <ianlewis@google.com> | 2021-05-31 20:00:17 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-05-31 20:02:43 -0700 |
commit | 4f374699818fec39dccdfcb07752fd0f728fe53d (patch) | |
tree | a772d7b94b9ce9b68a2f7b1c1530c06f4ea3e41e /pkg | |
parent | 30bca3270b9aba3394363a7fbb81291c9b0bb898 (diff) |
Update comments on ambient caps to point to bug
PiperOrigin-RevId: 376747671
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/sentry/kernel/auth/credentials.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/kernel/auth/credentials.go b/pkg/sentry/kernel/auth/credentials.go index 6862f2ef5..3325fedcb 100644 --- a/pkg/sentry/kernel/auth/credentials.go +++ b/pkg/sentry/kernel/auth/credentials.go @@ -125,7 +125,7 @@ func NewUserCredentials(kuid KUID, kgid KGID, extraKGIDs []KGID, capabilities *T creds.EffectiveCaps = capabilities.EffectiveCaps creds.BoundingCaps = capabilities.BoundingCaps creds.InheritableCaps = capabilities.InheritableCaps - // TODO(nlacasse): Support ambient capabilities. + // TODO(gvisor.dev/issue/3166): Support ambient capabilities. } else { // If no capabilities are specified, grant capabilities consistent with // setresuid + setresgid from NewRootCredentials to the given uid and |