2005-05-23 Paul Jakma <paul@dishone.st>

* bgp_routemap.c: add semi-colons to VTY_GET_* to match vty.h change
This commit is contained in:
paul 2005-05-23 13:17:29 +00:00
parent d4f0960cb2
commit a94feb380d
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-05-23 Paul Jakma <paul@dishone.st>
* bgp_routemap.c: add semi-colons to VTY_GET_* to match vty.h change
2005-05-19 Paul Jakma <paul@dishone.st>
* bgp_fsm.c: (bgp_stop) use sockunion_free, not XFREE..

View File

@ -3288,7 +3288,7 @@ DEFUN (set_aggregator_as,
struct in_addr address;
char *argstr;
VTY_GET_INTEGER_RANGE ("AS Path", as, argv[0], 1, BGP_AS_MAX)
VTY_GET_INTEGER_RANGE ("AS Path", as, argv[0], 1, BGP_AS_MAX);
ret = inet_aton (argv[1], &address);
if (ret == 0)
@ -3325,7 +3325,7 @@ DEFUN (no_set_aggregator_as,
if (argv == 0)
return bgp_route_set_delete (vty, vty->index, "aggregator as", NULL);
VTY_GET_INTEGER_RANGE ("AS Path", as, argv[0], 1, BGP_AS_MAX)
VTY_GET_INTEGER_RANGE ("AS Path", as, argv[0], 1, BGP_AS_MAX);
ret = inet_aton (argv[1], &address);
if (ret == 0)