summaryrefslogtreecommitdiffstats
path: root/src/vnet/ip
diff options
context:
space:
mode:
authorChenmin Sun <chenmin.sun@intel.com>2020-07-12 08:08:36 +0800
committerFlorin Coras <florin.coras@gmail.com>2020-07-14 14:34:57 +0000
commite30f9c5c6342a0f2430848ec4166b75596642964 (patch)
treef4e34ce51d7a2742dea8f0af85c665dee5271a39 /src/vnet/ip
parent3999a4bdb76ae45711f494566d14cb0c7665c051 (diff)
ip: fix format_ip6_address_and_mask() bug
Previously there's a format_ip4_address in format_ip6... This patch fixes this typo Type: fix Signed-off-by: Chenmin Sun <chenmin.sun@intel.com> Change-Id: Ice124db6594720ed35a992d069341f399c331e1d
Diffstat (limited to 'src/vnet/ip')
-rw-r--r--src/vnet/ip/ip6_format.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/vnet/ip/ip6_format.c b/src/vnet/ip/ip6_format.c
index 5b8df239bf2..1b8ff1e0ab0 100644
--- a/src/vnet/ip/ip6_format.c
+++ b/src/vnet/ip/ip6_format.c
@@ -127,13 +127,12 @@ format_ip6_address_and_mask (u8 * s, va_list * args)
return format (s, "any");
if (am->mask.as_u64[0] == ~0 && am->mask.as_u64[1] == ~0)
- return format (s, "%U", format_ip4_address, &am->addr);
+ return format (s, "%U", format_ip6_address, &am->addr);
return format (s, "%U/%U", format_ip6_address, &am->addr,
- format_ip4_address, &am->mask);
+ format_ip6_address, &am->mask);
}
-
/* Parse an IP6 address. */
uword
unformat_ip6_address (unformat_input_t * input, va_list * args)