Merge pull request #396 from pyakpyak/master

fix for #14633, use original nexthop ip value instead of obtained via…
This commit is contained in:
Jana Radhakrishnan 2015-07-15 09:08:11 -07:00
commit 90de4b4f3f
1 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ func programRoute(path string, dest *net.IPNet, nh net.IP) error {
return netlink.RouteAdd(&netlink.Route{
Scope: netlink.SCOPE_UNIVERSE,
LinkIndex: gwRoutes[0].LinkIndex,
Gw: gwRoutes[0].Gw,
Gw: nh,
Dst: dest,
})
})
@ -128,7 +128,7 @@ func removeRoute(path string, dest *net.IPNet, nh net.IP) error {
return netlink.RouteDel(&netlink.Route{
Scope: netlink.SCOPE_UNIVERSE,
LinkIndex: gwRoutes[0].LinkIndex,
Gw: gwRoutes[0].Gw,
Gw: nh,
Dst: dest,
})
})