diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2021-05-31 15:27:51 +0200 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2021-06-08 16:41:33 +0200 |
commit | 231af0a5d6f8139d85e5d6776c1c9708d1422966 (patch) | |
tree | 2001211c3ca9abcfad580c0923790fd5bdfdc44f /ospfd/ospf_packet.c | |
parent | zebra, ospfd: fix typos in the graceful restart code (diff) | |
download | frr-231af0a5d6f8139d85e5d6776c1c9708d1422966.tar.xz frr-231af0a5d6f8139d85e5d6776c1c9708d1422966.zip |
ospfd: fix wrong NSSA debug guards
Fix usage of NSSA debug guards in code paths that have nothing to
do with NSSA areas.
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'ospfd/ospf_packet.c')
-rw-r--r-- | ospfd/ospf_packet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c index 2ba5b3796..580eee13c 100644 --- a/ospfd/ospf_packet.c +++ b/ospfd/ospf_packet.c @@ -1890,7 +1890,7 @@ static void ospf_ls_upd(struct ospf *ospf, struct ip *iph, struct ospf_lsa *ls_ret, *current; int ret = 1; - if (IS_DEBUG_OSPF_NSSA) + if (IS_DEBUG_OSPF(lsa, LSA)) zlog_debug("LSA Type-%d from %pI4, ID: %pI4, ADV: %pI4", lsa->data->type, &ospfh->router_id, &lsa->data->id, &lsa->data->adv_router); |