summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2019-08-23 17:52:03 +0000
committergVisor bot <gvisor-bot@google.com>2019-08-23 17:52:03 +0000
commit63d9a83621629f0bf368892c4550d9c7f6a08b1f (patch)
tree6f00dfcd74e813485499b8f1853ccd45a0fa524e /pkg/tcpip
parent8b90ccd7b2ca18488329edee6e37e73f141a28f2 (diff)
parente75a12e89de123fb55f19fdf3457d1a200973f59 (diff)
Merge e75a12e8 (automated)
Diffstat (limited to 'pkg/tcpip')
-rw-r--r--pkg/tcpip/tcpip.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/tcpip.go b/pkg/tcpip/tcpip.go
index 043dd549b..8f9b86cce 100644
--- a/pkg/tcpip/tcpip.go
+++ b/pkg/tcpip/tcpip.go
@@ -581,7 +581,7 @@ type Route struct {
}
// String implements the fmt.Stringer interface.
-func (r *Route) String() string {
+func (r Route) String() string {
var out strings.Builder
fmt.Fprintf(&out, "%s", r.Destination)
if len(r.Gateway) > 0 {