]> git.puffer.fish Git - mirror/frr.git/commitdiff
2005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
authorajs <ajs>
Thu, 24 Feb 2005 16:06:33 +0000 (16:06 +0000)
committerajs <ajs>
Thu, 24 Feb 2005 16:06:33 +0000 (16:06 +0000)
* redistribute.c: (zebra_check_addr,is_default,
  zebra_redistribute_default,zebra_redistribute) Fix scope to be static.

zebra/ChangeLog
zebra/redistribute.c

index 35d2aa877b80182fa73140597718570750c01a5f..f29d2eac401dda3a012d15e0e843c013803bc73c 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
+
+       * redistribute.c: (zebra_check_addr,is_default,
+         zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
+
 2005-02-20 Hasso Tepper <hasso at quagga.net>
 
        * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]"
index 20a2b78a2294c1c588665351546a2024f6e82e3f..949159de8b5624073deec2d15f1187d5e25ff24f 100644 (file)
@@ -40,7 +40,7 @@
 /* master zebra server structure */
 extern struct zebra_t zebrad;
 
-int
+static int
 zebra_check_addr (struct prefix *p)
 {
   if (p->family == AF_INET)
@@ -65,7 +65,7 @@ zebra_check_addr (struct prefix *p)
   return 1;
 }
 
-int
+static int
 is_default (struct prefix *p)
 {
   if (p->family == AF_INET)
@@ -82,7 +82,7 @@ is_default (struct prefix *p)
   return 0;
 }
 
-void
+static void
 zebra_redistribute_default (struct zserv *client)
 {
   struct prefix_ipv4 p;
@@ -136,7 +136,7 @@ zebra_redistribute_default (struct zserv *client)
 }
 
 /* Redistribute routes. */
-void
+static void
 zebra_redistribute (struct zserv *client, int type)
 {
   struct rib *newrib;