From 84682eb59ad100397b2719bec709b00568348144 Mon Sep 17 00:00:00 2001 From: Alessandro Boch Date: Thu, 28 Apr 2016 12:49:40 -0700 Subject: [PATCH] Fix bug in osl.SetGatewayIPv6() function Signed-off-by: Alessandro Boch --- libnetwork/osl/route_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnetwork/osl/route_linux.go b/libnetwork/osl/route_linux.go index 3ebaaec77c..09a0a45f89 100644 --- a/libnetwork/osl/route_linux.go +++ b/libnetwork/osl/route_linux.go @@ -142,7 +142,7 @@ func (n *networkNamespace) SetGatewayIPv6(gwv6 net.IP) error { err := programGateway(n.nsPath(), gwv6, true) if err == nil { - n.SetGatewayIPv6(gwv6) + n.setGatewayIPv6(gwv6) } return err