* redistribute.c: (zebra_check_addr,is_default,
zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
+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]"
/* master zebra server structure */
extern struct zebra_t zebrad;
-int
+static int
zebra_check_addr (struct prefix *p)
{
if (p->family == AF_INET)
return 1;
}
-int
+static int
is_default (struct prefix *p)
{
if (p->family == AF_INET)
return 0;
}
-void
+static void
zebra_redistribute_default (struct zserv *client)
{
struct prefix_ipv4 p;
}
/* Redistribute routes. */
-void
+static void
zebra_redistribute (struct zserv *client, int type)
{
struct rib *newrib;