From 352829f538783afe8609f09850f45536a4779b70 Mon Sep 17 00:00:00 2001 From: pragash Date: Thu, 17 Aug 2017 22:53:24 -0400 Subject: Fixed ip add bug for ip6 with review comments Change-Id: Ie1fba1a32020775444c7b1ed800e8559b54691ff Signed-off-by: pragash --- src/vnet/ip/lookup.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/vnet') diff --git a/src/vnet/ip/lookup.c b/src/vnet/ip/lookup.c index 4506ae14..5537bb04 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); -- cgit 1.2.3-korg