diff options
author | ajs <ajs> | 2005-02-24 16:06:33 +0000 |
---|---|---|
committer | ajs <ajs> | 2005-02-24 16:06:33 +0000 |
commit | a8aeae7016beafc36c1f5b4c5a2c484269416585 (patch) | |
tree | 48e15357a201d311d6e8a1a303fc0bb99af2aadd /zebra/redistribute.c | |
parent | 8f79a0eeba9a1b1758b070380c4ba34d7cf9957b (diff) | |
download | quagga-nonblocking.zserv.before.tar.bz2 quagga-nonblocking.zserv.before.tar.xz |
2005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>nonblocking.zserv.before
* redistribute.c: (zebra_check_addr,is_default,
zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
Diffstat (limited to 'zebra/redistribute.c')
-rw-r--r-- | zebra/redistribute.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; |