summaryrefslogtreecommitdiffstats
path: root/proto/ospf/iface.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2004-06-05 11:58:23 +0200
committerMartin Mares <mj@ucw.cz>2004-06-05 11:58:23 +0200
commit9831e5916f6956377739f948869d377b091f5c92 (patch)
tree47fd922a6348067faa9a2441cbe480fe8bc6be75 /proto/ospf/iface.c
parent598b984d1f04ea71fc04bc89f390f230a3960680 (diff)
downloadbird-9831e5916f6956377739f948869d377b091f5c92.tar
bird-9831e5916f6956377739f948869d377b091f5c92.zip
Staticized lots of local functions.
Diffstat (limited to 'proto/ospf/iface.c')
-rw-r--r--proto/ospf/iface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c
index 70e73b9..df73295 100644
--- a/proto/ospf/iface.c
+++ b/proto/ospf/iface.c
@@ -16,19 +16,19 @@ char *ospf_ism[]={ "interface up", "wait timer fired", "backup seen",
char *ospf_it[]={ "broadcast", "nbma", "point-to-point", "virtual link" };
-void
+static void
poll_timer_hook(timer *timer)
{
ospf_hello_send(timer, 1, NULL);
}
-void
+static void
hello_timer_hook(timer *timer)
{
ospf_hello_send(timer, 0, NULL);
}
-void
+static void
wait_timer_hook(timer *timer)
{
struct ospf_iface *ifa;