diff options
author | hasso <hasso> | 2004-12-22 13:09:59 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-12-22 13:09:59 +0000 |
commit | baa7e3edb56bd1e9af6c4f0688587f10dd48ed38 (patch) | |
tree | 40ae941ad318db425e63317dea2f65dee3cc51fb | |
parent | 22890ddae50673fd5c4463204cc8074219d5972f (diff) | |
download | quagga-baa7e3edb56bd1e9af6c4f0688587f10dd48ed38.tar.bz2 quagga-baa7e3edb56bd1e9af6c4f0688587f10dd48ed38.tar.xz |
Fix "show ip ospf" output. If router is configured as "translate-never", we
say so - we can never be translator.
-rw-r--r-- | ospfd/ChangeLog | 2 | ||||
-rw-r--r-- | ospfd/ospf_vty.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 205d04a2..6bbeb9dd 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,6 +1,8 @@ 2004-12-22 Hasso Tepper <hasso at quagga.net> * ospf_dump.c: Show debug configuration in vtysh. + * ospf_vty.c: Fix "show ip ospf" output. Router can't be elected in + any case if it's configured as "translate-never". 2004-12-15 Andrew J. Schorr <ajschorr@alumni.princeton.edu> diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index b9c554f4..264e4414 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -2400,7 +2400,7 @@ show_ip_ospf_area (struct vty *vty, struct ospf_area *area) vty_out (vty, "not the NSSA Elected Translator. %s", VTY_NEWLINE); else - vty_out (vty, "not the NSSA Elected Translator. %s", + vty_out (vty, "never an NSSA Translator. %s", VTY_NEWLINE); } } |