diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2012-03-16 13:01:12 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2012-03-16 13:01:12 +0100 |
commit | fd087589f80a435a42cedb87b917c71363b11860 (patch) | |
tree | 5c48c7e1a72fef945554c0e2fb09fa6a36e8e53f /proto/ospf/iface.c | |
parent | 0f808c066f3b5b190de951db042a34a1eb957a16 (diff) |
Fixes broken vlinks in OSPF.
Diffstat (limited to 'proto/ospf/iface.c')
-rw-r--r-- | proto/ospf/iface.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c index 13d5efb6..405e49df 100644 --- a/proto/ospf/iface.c +++ b/proto/ospf/iface.c @@ -570,6 +570,9 @@ ospf_iface_new(struct ospf_area *oa, struct ifa *addr, struct ospf_iface_patt *i { ifa->voa = ospf_find_area(oa->po, ip->voa); ifa->vid = ip->vid; + + ifa->hello_timer = tm_new_set(ifa->pool, hello_timer_hook, ifa, 0, ifa->helloint); + return; /* Don't lock, don't add sockets */ } |