diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2017-02-10 16:56:10 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2017-02-10 16:57:20 +0100 | 
| commit | dab8cd005fae1fa33ef7203e85dd7ab93108f418 (patch) | |
| tree | 0da71d7db65b4f240f5ac3ce77fd7aaf3219bbab /zebra/zebra_mpls_vty.c | |
| parent | 0a22b97922ed61415ae9f57e57741d4af3ddb217 (diff) | |
*: fix ambiguous commands
Some "show [ip] bgp ipv4 encap ..." commands remaining ambiguous.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/zebra_mpls_vty.c')
| -rw-r--r-- | zebra/zebra_mpls_vty.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_mpls_vty.c b/zebra/zebra_mpls_vty.c index fcd0fff32c..dd381723c5 100644 --- a/zebra/zebra_mpls_vty.c +++ b/zebra/zebra_mpls_vty.c @@ -472,7 +472,7 @@ DEFUN (no_ip_route_tag_distance_label,  DEFUN (no_ip_route_mask_distance_label,         no_ip_route_mask_distance_label_cmd, -       "no ip route A.B.C.D A.B.C.D <A.B.C.D|INTERFACE|null0> (1-255)", +       "no ip route A.B.C.D A.B.C.D <A.B.C.D|INTERFACE|null0> (1-255) label WORD",         NO_STR         IP_STR         "Establish static routes\n" @@ -486,7 +486,7 @@ DEFUN (no_ip_route_mask_distance_label,         "One or more labels separated by '/'\n")  {    return zebra_static_ipv4 (vty, SAFI_UNICAST, 0, argv[3]->arg, argv[4]->arg, argv[5]->arg, NULL, NULL, -                            argv[6]->arg, NULL, NULL); +                            argv[6]->arg, NULL, argv[8]->arg);  }  DEFUN (no_ip_route_mask_tag_distance_label,  | 
