diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2021-06-11 11:33:13 +0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-11 11:33:13 +0300 | 
| commit | 352cc841d897eb343f12d7f85c7f346ab3c29beb (patch) | |
| tree | 115434b642a778d169df7469cac0a2805bd0329f /ospf6d | |
| parent | ea6795999540afc6717addd6dc740214732e034a (diff) | |
| parent | 5c2b86bba949241e0a6944541a215a546621c641 (diff) | |
Merge pull request #8831 from sworleys/Fix-No-Ospf-Func
ospf6d: fix undefined function
Diffstat (limited to 'ospf6d')
| -rw-r--r-- | ospf6d/ospf6_interface.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index 148f2dc50d..952c7f8b27 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -1640,7 +1640,7 @@ void ospf6_interface_start(struct ospf6_interface *oi)  	ospf6_interface_enable(oi);  	/* If the router is ABR, originate summary routes */ -	if (ospf6_is_router_abr(ospf6)) +	if (ospf6_check_and_set_router_abr(ospf6))  		ospf6_abr_enable_area(oa);  }  | 
