diff options
author | paul <paul> | 2003-06-30 22:46:14 +0000 |
---|---|---|
committer | paul <paul> | 2003-06-30 22:46:14 +0000 |
commit | 9d5260374afc19e31eab72b9d1550e8b57c57dbe (patch) | |
tree | 921c2ddfe29af7e8beb8ddcdc25ede0d5b59104d /ospfd | |
parent | 93fe5c5bed35dae0f40fe3ceeef2d1563d0c6eda (diff) |
2003-06-30 Paul Jakma <paul@dishone.st>
* (show_ip_ospf_database_header) Fix unconditional NSSA-dependent
printf.
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ospf_vty.c | 6 |
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) |