mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 11:18:52 +00:00
* ospf_apiserver.c: Fix obvious error in notifying clients about ISM
changes - oi->ifp->status doesn't give to us info about ISM, oi->state does. [backport candidate]
This commit is contained in:
parent
f69bd9da8b
commit
1ddd729e6f
@ -1,3 +1,9 @@
|
|||||||
|
2005-06-07 Hasso Tepper <hasso at quagga.net>
|
||||||
|
|
||||||
|
* ospf_apiserver.c: Fix obvious error in notifying clients about ISM
|
||||||
|
changes - oi->ifp->status doesn't give to us info about ISM,
|
||||||
|
oi->state does.
|
||||||
|
|
||||||
2005-06-01 Akihiro Mizutani <mizutani@net-chef.net>
|
2005-06-01 Akihiro Mizutani <mizutani@net-chef.net>
|
||||||
|
|
||||||
* ospf_ism.c (ospf_elect_bdr/ospf_elect_dr): Fix DR election bug.
|
* ospf_ism.c (ospf_elect_bdr/ospf_elect_dr): Fix DR election bug.
|
||||||
|
@ -2444,7 +2444,7 @@ ospf_apiserver_clients_notify_ism_change (struct ospf_interface *oi)
|
|||||||
area_id = oi->area->area_id;
|
area_id = oi->area->area_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
msg = new_msg_ism_change (0, ifaddr, area_id, oi->ifp->status);
|
msg = new_msg_ism_change (0, ifaddr, area_id, oi->state);
|
||||||
if (!msg)
|
if (!msg)
|
||||||
{
|
{
|
||||||
zlog_warn ("apiserver_clients_notify_ism_change: msg_new failed");
|
zlog_warn ("apiserver_clients_notify_ism_change: msg_new failed");
|
||||||
|
Loading…
Reference in New Issue
Block a user