]> git.puffer.fish Git - mirror/frr.git/commitdiff
quagga route-map on-match and continue statements accept 65536
authorDaniel Walton <dwalton@cumulusnetworks.com>
Mon, 22 Aug 2016 12:37:13 +0000 (12:37 +0000)
committerDaniel Walton <dwalton@cumulusnetworks.com>
Mon, 22 Aug 2016 12:37:13 +0000 (12:37 +0000)
Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com>
Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com>
Ticket: CM-12581

lib/routemap.c

index d8d1872d65e98b1c1a669e3e19534bd6fefe34e7..9267056df62d515922bd461e896b85da96bfb5e1 100644 (file)
@@ -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")