From: paul Date: Mon, 23 May 2005 13:17:29 +0000 (+0000) Subject: 2005-05-23 Paul Jakma X-Git-Tag: frr-2.0-rc1~3006 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=a94feb380df46bdfc742257648c9825e8e7b17c0;p=mirror%2Ffrr.git 2005-05-23 Paul Jakma * bgp_routemap.c: add semi-colons to VTY_GET_* to match vty.h change --- diff --git a/bgpd/ChangeLog b/bgpd/ChangeLog index 25c4e37e9f..3d9034640b 100644 --- a/bgpd/ChangeLog +++ b/bgpd/ChangeLog @@ -1,3 +1,7 @@ +2005-05-23 Paul Jakma + + * bgp_routemap.c: add semi-colons to VTY_GET_* to match vty.h change + 2005-05-19 Paul Jakma * bgp_fsm.c: (bgp_stop) use sockunion_free, not XFREE.. diff --git a/bgpd/bgp_routemap.c b/bgpd/bgp_routemap.c index a9de457d25..fc2c8fd96a 100644 --- a/bgpd/bgp_routemap.c +++ b/bgpd/bgp_routemap.c @@ -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)