diff options
author | Martin Mares <mj@ucw.cz> | 2004-06-05 11:58:23 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2004-06-05 11:58:23 +0200 |
commit | 9831e5916f6956377739f948869d377b091f5c92 (patch) | |
tree | 47fd922a6348067faa9a2441cbe480fe8bc6be75 /proto/ospf/topology.c | |
parent | 598b984d1f04ea71fc04bc89f390f230a3960680 (diff) | |
download | bird-9831e5916f6956377739f948869d377b091f5c92.tar bird-9831e5916f6956377739f948869d377b091f5c92.zip |
Staticized lots of local functions.
Diffstat (limited to 'proto/ospf/topology.c')
-rw-r--r-- | proto/ospf/topology.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c index 81d35cc..73d2ddd 100644 --- a/proto/ospf/topology.c +++ b/proto/ospf/topology.c @@ -20,7 +20,7 @@ #define HASH_LO_STEP 2 #define HASH_LO_MIN 8 -void * +static void * originate_rt_lsa_body(struct ospf_area *oa, u16 *length, struct proto_ospf *p) { struct ospf_iface *ifa; @@ -216,7 +216,7 @@ originate_rt_lsa(struct ospf_area *oa) oa->origrt=0; } -void * +static void * originate_net_lsa_body(struct ospf_iface *ifa, u16 *length, struct proto_ospf *po) { |