Browse Source

Fixing a few go-vet issues

Signed-off-by: Madhu Venugopal <madhu@docker.com>
Madhu Venugopal 10 years ago
parent
commit
9d1cc7d56a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      libnetwork/drivers/bridge/bridge_test.go
  2. 1 1
      libnetwork/endpoint_info.go

+ 1 - 1
libnetwork/drivers/bridge/bridge_test.go

@@ -159,7 +159,7 @@ func (te *testEndpoint) SetResolvConfPath(path string) error {
 }
 }
 
 
 func (te *testEndpoint) AddStaticRoute(destination *net.IPNet, routeType int, nextHop net.IP, interfaceID int) error {
 func (te *testEndpoint) AddStaticRoute(destination *net.IPNet, routeType int, nextHop net.IP, interfaceID int) error {
-	te.routes = append(te.routes, types.StaticRoute{destination, routeType, nextHop, interfaceID})
+	te.routes = append(te.routes, types.StaticRoute{Destination: destination, RouteType: routeType, NextHop: nextHop, InterfaceID: interfaceID})
 	return nil
 	return nil
 }
 }
 
 

+ 1 - 1
libnetwork/endpoint_info.go

@@ -155,7 +155,7 @@ func (ep *endpoint) AddStaticRoute(destination *net.IPNet, routeType int, nextHo
 	ep.Lock()
 	ep.Lock()
 	defer ep.Unlock()
 	defer ep.Unlock()
 
 
-	r := types.StaticRoute{destination, routeType, nextHop, interfaceID}
+	r := types.StaticRoute{Destination: destination, RouteType: routeType, NextHop: nextHop, InterfaceID: interfaceID}
 
 
 	if routeType == types.NEXTHOP {
 	if routeType == types.NEXTHOP {
 		// If the route specifies a next-hop, then it's loosely routed (i.e. not bound to a particular interface).
 		// If the route specifies a next-hop, then it's loosely routed (i.e. not bound to a particular interface).