diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-11-06 03:18:50 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-11-06 03:18:50 +0000 |
commit | bcebd1a3ae085b13af7abe5751e06f7f05157487 (patch) | |
tree | a606587a2308d925fb7c9b2fb6ee72425a8a0fab /pkg/tcpip/stack/route.go | |
parent | 74bc9ab610161a8d1f138ff8558dbb5c6a7edc59 (diff) | |
parent | 06e33cd737c59623ddcca60eacefb112fc1a0cd4 (diff) |
Merge release-20201030.0-38-g06e33cd73 (automated)
Diffstat (limited to 'pkg/tcpip/stack/route.go')
-rw-r--r-- | pkg/tcpip/stack/route.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/stack/route.go b/pkg/tcpip/stack/route.go index 2e698f92f..15ff437c7 100644 --- a/pkg/tcpip/stack/route.go +++ b/pkg/tcpip/stack/route.go @@ -440,7 +440,7 @@ func (r *Route) isV4Broadcast(addr tcpip.Address) bool { return true } - subnet := r.localAddressEndpoint.AddressWithPrefix().Subnet() + subnet := r.localAddressEndpoint.Subnet() return subnet.IsBroadcast(addr) } |