Fixes broken vlinks in OSPF.

This commit is contained in:
Ondrej Zajicek 2012-03-16 13:01:12 +01:00
parent 0f808c066f
commit fd087589f8
2 changed files with 4 additions and 1 deletions

View file

@ -219,7 +219,7 @@ ospf_stubnet_item:
ospf_vlink:
ospf_vlink_start '{' ospf_vlink_opts '}' { ospf_iface_finish(); }
| ospf_vlink_start
| ospf_vlink_start { ospf_iface_finish(); }
;
ospf_vlink_opts:

View file

@ -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 */
}