2003-07-13 Paul Jakma <paul@dishone.st>
* ospf_lsa.c: fix up some places where an NSSA specific define,
(OSPF_LSA_LOCAL_XLT) was referenced in if statements without being
ifdef'ed by HAVE_NSSA.
diff --git a/ospfd/ospf_lsa.c b/ospfd/ospf_lsa.c
index 18ab140..079eea5 100644
--- a/ospfd/ospf_lsa.c
+++ b/ospfd/ospf_lsa.c
@@ -2334,7 +2334,9 @@
* Translated LSAs should not be registered, but refreshed upon
* refresh of the Type-7
*/
+#ifdef HAVE_NSSA
if ( !CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT) )
+#endif
ospf_refresher_register_lsa (ospf, new);
/* Debug logging. */
@@ -2523,9 +2525,14 @@
#endif /* HAVE_NSSA */
/* Register self-originated LSA to refresh queue.
- * Leave Translated LSAs alone
+ * Leave Translated LSAs alone if NSSA is enabled
*/
- if (IS_LSA_SELF (new) && !CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT ) )
+ if (IS_LSA_SELF (new)
+#ifdef HAVE_NSSA
+ && !CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT )
+#endif /* HAVE_NSSA */
+ )
+
ospf_refresher_register_lsa (ospf, new);
return new;