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 (cherry picked from commit e30f9c5c6342a0f2430848ec4166b75596642964)
This commit is contained in:
parent
806f3f6177
commit
edec3f6041
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user