From 27da3988c30c333cd75cffc5565682366bb99513 Mon Sep 17 00:00:00 2001 From: ajs Date: Thu, 24 Feb 2005 16:06:33 +0000 Subject: 2005-02-24 Andrew J. Schorr * redistribute.c: (zebra_check_addr,is_default, zebra_redistribute_default,zebra_redistribute) Fix scope to be static. --- zebra/ChangeLog | 5 +++++ zebra/redistribute.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) (limited to 'zebra') diff --git a/zebra/ChangeLog b/zebra/ChangeLog index 35d2aa87..f29d2eac 100644 --- a/zebra/ChangeLog +++ b/zebra/ChangeLog @@ -1,3 +1,8 @@ +2005-02-24 Andrew J. Schorr + + * redistribute.c: (zebra_check_addr,is_default, + zebra_redistribute_default,zebra_redistribute) Fix scope to be static. + 2005-02-20 Hasso Tepper * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]" diff --git a/zebra/redistribute.c b/zebra/redistribute.c index 20a2b78a..949159de 100644 --- a/zebra/redistribute.c +++ b/zebra/redistribute.c @@ -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; -- cgit v1.2.1