From 2f71a888993dc9ee958f174d2e456221d7005f60 Mon Sep 17 00:00:00 2001 From: Jakub Grajciar Date: Thu, 10 Oct 2019 14:21:22 +0200 Subject: ip: ipfix-export API update Use consistent API types. Type: fix Signed-off-by: Jakub Grajciar Change-Id: I5b03e5de111c3a3b8da4e9f02cba0aa99e3ee9f3 --- src/vpp/api/custom_dump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/vpp/api/custom_dump.c') diff --git a/src/vpp/api/custom_dump.c b/src/vpp/api/custom_dump.c index 66a17b27cb1..7b37862fd40 100644 --- a/src/vpp/api/custom_dump.c +++ b/src/vpp/api/custom_dump.c @@ -2556,10 +2556,10 @@ static void *vl_api_set_ipfix_exporter_t_print s = format (0, "SCRIPT: set_ipfix_exporter "); s = format (s, "collector-address %U ", format_ip4_address, - (ip4_address_t *) mp->collector_address); + (ip4_address_t *) mp->collector_address.un.ip4); s = format (s, "collector-port %d ", (mp->collector_port)); s = format (s, "src-address %U ", format_ip4_address, - (ip4_address_t *) mp->src_address); + (ip4_address_t *) mp->src_address.un.ip4); s = format (s, "vrf-id %d ", (mp->vrf_id)); s = format (s, "path-mtu %d ", (mp->path_mtu)); s = format (s, "template-interval %d ", (mp->template_interval)); -- cgit 1.2.3-korg