diff options
author | Paul Jakma <paul@quagga.net> | 2011-04-11 17:28:16 +0200 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2011-04-13 16:13:33 +0200 |
commit | 072990e22e66ed9a15261b70658dc4a8801975b5 (patch) | |
tree | 6fd4e1dcfb4d076a5c14ab148da71679b06a6322 /ospfd/ospf_apiserver.h | |
parent | Fix authorship of previous ospf6d commit (diff) | |
download | frr-072990e22e66ed9a15261b70658dc4a8801975b5.tar.xz frr-072990e22e66ed9a15261b70658dc4a8801975b5.zip |
ospf: Fix OSPF API and ospf-te LSA refreshers to match recent API change
* ospf_apiserver.{c,h}: (ospf_apiserver_lsa_refresher) refreshers must now
return the refreshed LSA.
* ospf_te.{c,h}: (ospf_mpls_te_lsa_refresh) ditto
* ospf_api.c: trivial compiler warning fix
Diffstat (limited to 'ospfd/ospf_apiserver.h')
-rw-r--r-- | ospfd/ospf_apiserver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_apiserver.h b/ospfd/ospf_apiserver.h index 9a8ae254e..b60f56b4f 100644 --- a/ospfd/ospf_apiserver.h +++ b/ospfd/ospf_apiserver.h @@ -180,7 +180,7 @@ extern void ospf_apiserver_config_write_router (struct vty *vty); extern void ospf_apiserver_config_write_if (struct vty *vty, struct interface *ifp); extern void ospf_apiserver_show_info (struct vty *vty, struct ospf_lsa *lsa); extern int ospf_ospf_apiserver_lsa_originator (void *arg); -extern void ospf_apiserver_lsa_refresher (struct ospf_lsa *lsa); +extern struct ospf_lsa *ospf_apiserver_lsa_refresher (struct ospf_lsa *lsa); extern void ospf_apiserver_flush_opaque_lsa (struct ospf_apiserver *apiserv, u_char lsa_type, u_char opaque_type); |