diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-15 10:28:11 -0700 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2009-06-18 20:18:30 +0100 |
commit | ffa4e2c4712ddcb5085971aaf001f030723ee307 (patch) | |
tree | c678f391c427079ec667413f63bc26d5b422c4d7 /bgpd/bgp_ecommunity.c | |
parent | 372b3c70a090359fe401dbb5e7c34ff8ae09f757 (diff) |
[BGP/cleanup] make ecommunity variables/functions local
Diffstat (limited to 'bgpd/bgp_ecommunity.c')
-rw-r--r-- | bgpd/bgp_ecommunity.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_ecommunity.c b/bgpd/bgp_ecommunity.c index 4d9fc708..6152a1db 100644 --- a/bgpd/bgp_ecommunity.c +++ b/bgpd/bgp_ecommunity.c @@ -30,10 +30,10 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA #include "bgpd/bgp_aspath.h" /* Hash of community attribute. */ -struct hash *ecomhash; +static struct hash *ecomhash; /* Allocate a new ecommunities. */ -struct ecommunity * +static struct ecommunity * ecommunity_new (void) { return (struct ecommunity *) XCALLOC (MTYPE_ECOMMUNITY, |