diff options
| author | Russ White <russ@riw.us> | 2023-01-18 15:57:48 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-18 15:57:48 -0500 | 
| commit | bb1d52b3c095f1977c24088e64c2558d1c71dbd7 (patch) | |
| tree | aeaedf1ef9a6c03c9ab5e3e08af34fc8c61f59d2 /zebra/rt_netlink.c | |
| parent | 405227b51959d9b05aaaf1bd1d33849e31565ae7 (diff) | |
| parent | 68ff69fa27180b7e662916f4c7d45f83f833d986 (diff) | |
Merge pull request #12604 from donaldsharp/distance_metric_offload_fixes
Distance/metric offload fixes
Diffstat (limited to 'zebra/rt_netlink.c')
| -rw-r--r-- | zebra/rt_netlink.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c index 39ec003047..1a090c78e3 100644 --- a/zebra/rt_netlink.c +++ b/zebra/rt_netlink.c @@ -2077,7 +2077,7 @@ ssize_t netlink_route_multipath_msg_encode(int cmd,  	 * by the routing protocol and for communicating with protocol peers.  	 */  	if (!nl_attr_put32(&req->n, datalen, RTA_PRIORITY, -			   NL_DEFAULT_ROUTE_METRIC)) +			   ROUTE_INSTALLATION_METRIC))  		return 0;  #if defined(SUPPORT_REALMS)  | 
