mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-13 22:26:14 +00:00
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:
parent
d4f0960cb2
commit
a94feb380d
@ -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..
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user