diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/vnet/ip/lookup.c | 8 |
1 files changed, 4 insertions, 4 deletions
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); |