* 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:
hasso 2005-06-07 19:54:04 +00:00
parent f69bd9da8b
commit 1ddd729e6f
2 changed files with 7 additions and 1 deletions

View File

@ -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>
* ospf_ism.c (ospf_elect_bdr/ospf_elect_dr): Fix DR election bug.

View File

@ -2444,7 +2444,7 @@ ospf_apiserver_clients_notify_ism_change (struct ospf_interface *oi)
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)
{
zlog_warn ("apiserver_clients_notify_ism_change: msg_new failed");