From: pragash Date: Fri, 18 Aug 2017 02:53:24 +0000 (-0400) Subject: Fixed ip add bug for ip6 with review comments X-Git-Tag: v17.10-rc1~200 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=352829f538783afe8609f09850f45536a4779b70 Fixed ip add bug for ip6 with review comments Change-Id: Ie1fba1a32020775444c7b1ed800e8559b54691ff Signed-off-by: pragash --- diff --git a/src/vnet/ip/lookup.c b/src/vnet/ip/lookup.c index 4506ae14019..5537bb04a40 100755 --- a/src/vnet/ip/lookup.c +++ b/src/vnet/ip/lookup.c @@ -384,10 +384,6 @@ vnet_ip_route_cmd (vlib_main_t * vm, if (unformat (line_input, "table %d", &table_id)) ; - else if (unformat (line_input, "del")) - is_del = 1; - else if (unformat (line_input, "add")) - is_del = 0; else if (unformat (line_input, "resolve-via-host")) { if (vec_len (rpaths) == 0) @@ -542,6 +538,10 @@ vnet_ip_route_cmd (vlib_main_t * vm, { vec_add1 (dpos, dpo); } + else if (unformat (line_input, "del")) + is_del = 1; + else if (unformat (line_input, "add")) + is_del = 0; else { error = unformat_parse_error (line_input);