diff options
author | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-08-22 14:37:13 +0200 |
---|---|---|
committer | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-08-22 14:37:13 +0200 |
commit | 53519ae74ad7e87d02758acd407d1b1d1e5575cb (patch) | |
tree | 6ed540159087be36c005441f5a6a46cce0ebca22 /lib | |
parent | zebra: implement per-route mtu handling (diff) | |
download | frr-53519ae74ad7e87d02758acd407d1b1d1e5575cb.tar.xz frr-53519ae74ad7e87d02758acd407d1b1d1e5575cb.zip |
quagga route-map on-match and continue statements accept 65536
Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com>
Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com>
Ticket: CM-12581
Diffstat (limited to 'lib')
-rw-r--r-- | lib/routemap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/routemap.c b/lib/routemap.c index d8d1872d6..9267056df 100644 --- a/lib/routemap.c +++ b/lib/routemap.c @@ -1591,7 +1591,7 @@ DEFUN (rmap_onmatch_goto, } if (argc == 1 && argv[0]) - VTY_GET_INTEGER_RANGE("route-map index", d, argv[0], 1, 65536); + VTY_GET_INTEGER_RANGE("route-map index", d, argv[0], 1, 65535); else d = index->pref + 1; @@ -1669,7 +1669,7 @@ DEFUN (rmap_show_name, ALIAS (rmap_onmatch_goto, rmap_continue_index_cmd, - "continue <1-65536>", + "continue <1-65535>", "Exit policy on matches\n" "Goto Clause number\n") |