diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-15 10:17:09 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-15 10:17:09 -0700 |
commit | 434fa88ab4181849d228ba247c63e7390c307fa1 (patch) | |
tree | 252edc7c35b3a539e1ab7ee4d90e00f2e53ed5ab | |
parent | b8a3feae6436804827d5c9d67fa2e4761084b529 (diff) | |
download | quagga-434fa88ab4181849d228ba247c63e7390c307fa1.tar.bz2 quagga-434fa88ab4181849d228ba247c63e7390c307fa1.tar.xz |
BGP make community hash table static
-rw-r--r-- | bgpd/bgp_community.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_community.c b/bgpd/bgp_community.c index 45ab3d44..72bb88e6 100644 --- a/bgpd/bgp_community.c +++ b/bgpd/bgp_community.c @@ -26,7 +26,7 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA #include "bgpd/bgp_community.h" /* Hash of community attribute. */ -struct hash *comhash; +static struct hash *comhash; /* Allocate a new communities value. */ static struct community * |