VPP-930: add missing ntohl to send_ip6_fib_details(...) 81/8881/1
authorDave Barach <dave@barachs.net>
Wed, 18 Oct 2017 14:54:12 +0000 (10:54 -0400)
committerDave Barach <dave@barachs.net>
Wed, 18 Oct 2017 14:54:56 +0000 (10:54 -0400)
Change-Id: I0c1671f3eaf2dad084e3ac9fb124c9ed78273f50
Signed-off-by: Dave Barach <dave@barachs.net>
src/vnet/ip/ip_api.c

index a64c5b7..4b7af3b 100644 (file)
@@ -364,7 +364,7 @@ send_ip6_fib_details (vpe_api_main_t * am,
       }
     fp->weight = api_rpath->rpath.frp_weight;
     fp->preference = api_rpath->rpath.frp_preference;
-    fp->sw_if_index = api_rpath->rpath.frp_sw_if_index;
+    fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index);
     copy_fib_next_hop (api_rpath, fp);
     fp++;
   }