diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2024-01-22 06:29:14 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2024-01-22 06:29:14 +0100 |
commit | 13c6cf8a7430a6b133e46525256eb5554b3f0a2b (patch) | |
tree | 5df5a4f5093ad8013a8b5fb11e15ecf5673b90de /proto/ospf/lsupd.c | |
parent | 2b6bd8ca3a3955a407b0553009b05572693cfdf7 (diff) |
Trivial code cleanups
Diffstat (limited to 'proto/ospf/lsupd.c')
-rw-r--r-- | proto/ospf/lsupd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/lsupd.c b/proto/ospf/lsupd.c index 54c4a069..12c9cfaa 100644 --- a/proto/ospf/lsupd.c +++ b/proto/ospf/lsupd.c @@ -172,7 +172,7 @@ ospf_add_flushed_to_lsrt(struct ospf_proto *p, struct ospf_neighbor *n) WALK_SLIST(en, p->lsal) if ((en->lsa.age == LSA_MAXAGE) && (en->lsa_body != NULL) && lsa_flooding_allowed(en->lsa_type, en->domain, n->ifa) && - lsa_is_acceptable(en->lsa_type, n, p)) + lsa_is_acceptable(en->lsa_type, n, p)) ospf_lsa_lsrt_up(en, n); /* If we found any flushed LSA, we send them ASAP */ |