Skip to content

Commit 26e40eb

Browse files
committed
Merge pull request #1144 from aboch/gw46
Fix bug in osl.SetGatewayIPv6() function
2 parents 0c4e04c + 135a100 commit 26e40eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

osl/route_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func (n *networkNamespace) SetGatewayIPv6(gwv6 net.IP) error {
142142

143143
err := programGateway(n.nsPath(), gwv6, true)
144144
if err == nil {
145-
n.SetGatewayIPv6(gwv6)
145+
n.setGatewayIPv6(gwv6)
146146
}
147147

148148
return err

0 commit comments

Comments
 (0)