summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fsimpl/host
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-06-17 19:37:09 +0000
committergVisor bot <gvisor-bot@google.com>2020-06-17 19:37:09 +0000
commitb256f3500686f5c79c703c0c6c3fa243c9962847 (patch)
treefb1faa4e4b71447687eacfdec7facc85e1141497 /pkg/sentry/fsimpl/host
parentf189edb900b72e76eab4c8aca47c92833ef50091 (diff)
parent6d806ee7198422973a2e4efa9b539de7792b933f (diff)
Merge release-20200608.0-72-g6d806ee71 (automated)
Diffstat (limited to 'pkg/sentry/fsimpl/host')
-rw-r--r--pkg/sentry/fsimpl/host/tty.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/sentry/fsimpl/host/tty.go b/pkg/sentry/fsimpl/host/tty.go
index 0fbc543b1..4ee9270cc 100644
--- a/pkg/sentry/fsimpl/host/tty.go
+++ b/pkg/sentry/fsimpl/host/tty.go
@@ -326,9 +326,9 @@ func (t *TTYFileDescription) checkChange(ctx context.Context, sig linux.Signal)
task := kernel.TaskFromContext(ctx)
if task == nil {
// No task? Linux does not have an analog for this case, but
- // tty_check_change is more of a blacklist of cases than a
- // whitelist, and is surprisingly permissive. Allowing the
- // change seems most appropriate.
+ // tty_check_change only blocks specific cases and is
+ // surprisingly permissive. Allowing the change seems
+ // appropriate.
return nil
}