aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/bfd/bfd_udp.c
diff options
context:
space:
mode:
authorJon Loeliger <jdl@netgate.com>2018-05-05 16:11:31 -0500
committerDave Barach <openvpp@barachs.net>2018-05-07 12:10:58 +0000
commit6732aea6a491013bbc1abd23607b68650cd31f04 (patch)
tree020e1c18ad24ef8529b509c316824345576e3f2f /src/vnet/bfd/bfd_udp.c
parent8f5764802dd14b93d0f2e22ed9627c1d358f5551 (diff)
BFD: Fix format_ip46_address() parameter ordering.
Change-Id: I2b50e3fc06b4e905395d4706083f12ebc76826ce Signed-off-by: Jon Loeliger <jdl@netgate.com>
Diffstat (limited to 'src/vnet/bfd/bfd_udp.c')
-rw-r--r--src/vnet/bfd/bfd_udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/bfd/bfd_udp.c b/src/vnet/bfd/bfd_udp.c
index 5464ce91f57..fa696aa2006 100644
--- a/src/vnet/bfd/bfd_udp.c
+++ b/src/vnet/bfd/bfd_udp.c
@@ -589,7 +589,7 @@ bfd_udp_validate_api_input (u32 sw_if_index,
{
vlib_log_err (bum->log_class,
"local address %U not found on interface with index %u",
- format_ip46_address, IP46_TYPE_ANY, local_addr,
+ format_ip46_address, local_addr, IP46_TYPE_ANY,
sw_if_index);
return VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
}