summaryrefslogtreecommitdiff
path: root/ospfd/ospf_vty.c
diff options
context:
space:
mode:
Diffstat (limited to 'ospfd/ospf_vty.c')
-rw-r--r--ospfd/ospf_vty.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c
index 392b7ae0..2cce373f 100644
--- a/ospfd/ospf_vty.c
+++ b/ospfd/ospf_vty.c
@@ -3219,8 +3219,12 @@ show_ip_ospf_database_header (struct vty *vty, struct ospf_lsa *lsa)
ospf_options_dump(lsa->data->options),
VTY_NEWLINE);
vty_out (vty, " LS Flags: 0x%-2x %s%s",
- lsa->flags,
+ lsa->flags,
+#ifdef HAVE_NSSA
((lsa->flags & OSPF_LSA_LOCAL_XLT) ? "(Translated from Type-7)" : ""),
+#else
+ "",
+#endif /* HAVE_NSSA */
VTY_NEWLINE);
if (lsa->data->type == OSPF_ROUTER_LSA)