diff options
author | Kevin Krakauer <krakauer@google.com> | 2020-02-07 13:47:57 -0800 |
---|---|---|
committer | Kevin Krakauer <krakauer@google.com> | 2020-02-07 13:47:57 -0800 |
commit | c141eb5f430dc50f6bf90232c369b7b3a542155e (patch) | |
tree | bee6d61f9c02ed134a935924d0101a1b7d37b6c7 /pkg | |
parent | d98287f5eb40a9c91668b7511824c05d542e0599 (diff) |
Address GH comments.
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/abi/linux/netfilter.go | 2 | ||||
-rw-r--r-- | pkg/sentry/socket/netfilter/extensions.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pkg/abi/linux/netfilter.go b/pkg/abi/linux/netfilter.go index e4aabb6bb..7363185b7 100644 --- a/pkg/abi/linux/netfilter.go +++ b/pkg/abi/linux/netfilter.go @@ -363,7 +363,7 @@ type XTTCP struct { // range to which the matcher applies. DestinationPortStart uint16 - // DestinationPortEnd specifies the start of the destination port + // DestinationPortEnd specifies the end of the destination port // range to which the matcher applies. DestinationPortEnd uint16 diff --git a/pkg/sentry/socket/netfilter/extensions.go b/pkg/sentry/socket/netfilter/extensions.go index b5fbb52e4..3082976cd 100644 --- a/pkg/sentry/socket/netfilter/extensions.go +++ b/pkg/sentry/socket/netfilter/extensions.go @@ -1,4 +1,4 @@ -// Copyright 2019 The gVisor Authors. +// Copyright 2020 The gVisor Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. |