diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/adj/adj.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/vnet/adj/adj.c b/src/vnet/adj/adj.c index ee416801007..03c82062cc0 100644 --- a/src/vnet/adj/adj.c +++ b/src/vnet/adj/adj.c @@ -610,9 +610,7 @@ adj_show (vlib_main_t * vm, { if (unformat (input, "%d", &ai)) ; - else if (unformat (input, "sum")) - summary = 1; - else if (unformat (input, "summary")) + else if (unformat (input, "summary") || unformat (input, "sum")) summary = 1; else if (unformat (input, "%U", unformat_vnet_sw_interface, vnet_get_main(), |