]> git.puffer.fish Git - mirror/frr.git/commitdiff
2005-05-23 Paul Jakma <paul@dishone.st>
authorpaul <paul>
Mon, 23 May 2005 13:17:29 +0000 (13:17 +0000)
committerpaul <paul>
Mon, 23 May 2005 13:17:29 +0000 (13:17 +0000)
* bgp_routemap.c: add semi-colons to VTY_GET_* to match vty.h change

bgpd/ChangeLog
bgpd/bgp_routemap.c

index 25c4e37e9ff3c2c353c8ad20d0e35c05f2bbdd78..3d9034640bd6d2c2bd03449e341f23b7d5c3ea96 100644 (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..
index a9de457d25f1c518ee0856e54e4abb26ad902025..fc2c8fd96a35b81ab15bd3a99f7b7fd495b7b55a 100644 (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)