summaryrefslogtreecommitdiffhomepage
path: root/test/iptables
diff options
context:
space:
mode:
authorKevin Krakauer <krakauer@google.com>2020-05-29 15:37:34 -0700
committergVisor bot <gvisor-bot@google.com>2020-05-29 15:39:17 -0700
commit790811f75783cd3cb82b6aba5e8152129b2d1d4d (patch)
tree87ff475f44952f37c299465403544584aad13f17 /test/iptables
parent3bcfb092635d76f045abeba4d25194ae8b99b275 (diff)
Fix copied comment mistakes.
PiperOrigin-RevId: 313862843
Diffstat (limited to 'test/iptables')
-rw-r--r--test/iptables/filter_input.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/iptables/filter_input.go b/test/iptables/filter_input.go
index 14e385f5a..872021358 100644
--- a/test/iptables/filter_input.go
+++ b/test/iptables/filter_input.go
@@ -670,7 +670,7 @@ func (FilterInputInvertDestination) LocalAction(ip net.IP) error {
return sendUDPLoop(ip, acceptPort, sendloopDuration)
}
-// FilterInputSource verifies that we can filter packets via `-d
+// FilterInputSource verifies that we can filter packets via `-s
// <ipaddr>`.
type FilterInputSource struct{}
@@ -699,7 +699,7 @@ func (FilterInputSource) LocalAction(ip net.IP) error {
return sendUDPLoop(ip, acceptPort, sendloopDuration)
}
-// FilterInputInvertSource verifies that we can filter packets via `! -d
+// FilterInputInvertSource verifies that we can filter packets via `! -s
// <ipaddr>`.
type FilterInputInvertSource struct{}