diff options
Diffstat (limited to 'ospfd/ospf_nsm.c')
-rw-r--r-- | ospfd/ospf_nsm.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ospfd/ospf_nsm.c b/ospfd/ospf_nsm.c index 69bd48ce..f3ac9eaa 100644 --- a/ospfd/ospf_nsm.c +++ b/ospfd/ospf_nsm.c @@ -576,7 +576,7 @@ struct { }, }; -const static char *ospf_nsm_event_str[] = +static const char *ospf_nsm_event_str[] = { "NoEvent", "HelloReceived", @@ -686,6 +686,11 @@ nsm_change_state (struct ospf_neighbor *nbr, int state) continue; ospf_external_lsa_refresh_type (oi->ospf, x, force); } + /* XXX: Clearly some thing is wrong with refresh of external LSAs + * this added to hack around defaults not refreshing after a timer + * jump. + */ + ospf_external_lsa_refresh_default (oi->ospf); } else { |