From: Neale Ranns Date: Thu, 23 Apr 2020 16:01:20 +0000 (+0000) Subject: acl: ACL creation CLI parsing fix X-Git-Tag: v20.09-rc0~137 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F70%2F26670%2F3;p=vpp.git acl: ACL creation CLI parsing fix Type: fix Signed-off-by: Neale Ranns Change-Id: I026f0d8385b538e543bae0c1f7e56e49e4713ba1 --- diff --git a/src/plugins/acl/acl.c b/src/plugins/acl/acl.c index 017eb68e313..7a533743406 100644 --- a/src/plugins/acl/acl.c +++ b/src/plugins/acl/acl.c @@ -2950,7 +2950,8 @@ acl_set_aclplugin_acl_fn (vlib_main_t * vm, rules[rule_idx].is_permit = action; } else if (unformat (line_input, "src %U/%d", - unformat_ip46_address, &src, &src_prefix_length)) + unformat_ip46_address, &src, IP46_TYPE_ANY, + &src_prefix_length)) { vec_validate_acl_rules (rules, rule_idx); ip_address_encode (&src, IP46_TYPE_ANY, @@ -2959,7 +2960,8 @@ acl_set_aclplugin_acl_fn (vlib_main_t * vm, rules[rule_idx].src_prefix.len = src_prefix_length; } else if (unformat (line_input, "dst %U/%d", - unformat_ip46_address, &dst, &dst_prefix_length)) + unformat_ip46_address, &dst, IP46_TYPE_ANY, + &dst_prefix_length)) { vec_validate_acl_rules (rules, rule_idx); ip_address_encode (&dst, IP46_TYPE_ANY,