From: Daniel Walton Date: Mon, 22 Aug 2016 12:37:13 +0000 (+0000) Subject: quagga route-map on-match and continue statements accept 65536 X-Git-Tag: frr-2.0-rc1~376 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=53519ae74ad7e87d02758acd407d1b1d1e5575cb;p=mirror%2Ffrr.git quagga route-map on-match and continue statements accept 65536 Signed-off-by: Daniel Walton Reviewed-by: Donald Sharp Ticket: CM-12581 --- diff --git a/lib/routemap.c b/lib/routemap.c index d8d1872d65..9267056df6 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")