diff options
author | hasso <hasso> | 2005-06-07 19:54:04 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-06-07 19:54:04 +0000 |
commit | 1ddd729e6f20b93a635caece8c34ee1b7021fe26 (patch) | |
tree | e9bbe394bf37b142a6febb4b3097074a371764a6 /ospfd/ospf_apiserver.c | |
parent | f69bd9da8b1f7e0f297d4ffb370552fc41af3c81 (diff) |
* 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]
Diffstat (limited to 'ospfd/ospf_apiserver.c')
-rw-r--r-- | ospfd/ospf_apiserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_apiserver.c b/ospfd/ospf_apiserver.c index f9df812c..b557d01c 100644 --- a/ospfd/ospf_apiserver.c +++ b/ospfd/ospf_apiserver.c @@ -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"); |