diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-06-21 20:10:29 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-06-29 19:34:56 +0200 |
commit | e31b6333f4def619b6471d67bb901f7893a83193 (patch) | |
tree | 7d07cbd86fb8e6eeae363a3ea30e215de175ef0e /ospfd | |
parent | *: s/VTY_NEWLINE/VTYNL/g (diff) | |
download | frr-e31b6333f4def619b6471d67bb901f7893a83193.tar.xz frr-e31b6333f4def619b6471d67bb901f7893a83193.zip |
*: vty_outln (vty, "") --> vty_out (vty, VTYNL)
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ospf_apiserver.c | 2 | ||||
-rw-r--r-- | ospfd/ospf_dump.c | 2 | ||||
-rw-r--r-- | ospfd/ospf_vty.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ospfd/ospf_apiserver.c b/ospfd/ospf_apiserver.c index c927361f5..d09290e52 100644 --- a/ospfd/ospf_apiserver.c +++ b/ospfd/ospf_apiserver.c @@ -2201,7 +2201,7 @@ ospf_apiserver_show_info (struct vty *vty, struct ospf_lsa *lsa) { vty_out (vty, "0x%x ", olsa->data[i]); } - vty_outln (vty, ""); + vty_out (vty, VTYNL); } else { diff --git a/ospfd/ospf_dump.c b/ospfd/ospf_dump.c index c6724bdec..3947d5182 100644 --- a/ospfd/ospf_dump.c +++ b/ospfd/ospf_dump.c @@ -1653,7 +1653,7 @@ show_debugging_ospf_common (struct vty *vty, struct ospf *ospf) if (IS_DEBUG_OSPF (nssa, NSSA) == OSPF_DEBUG_NSSA) vty_outln (vty, " OSPF NSSA debugging is on"); - vty_outln (vty, ""); + vty_out (vty, VTYNL); return CMD_SUCCESS; } diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 1639949c8..05a596138 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -4788,7 +4788,7 @@ show_ip_ospf_database_header (struct vty *vty, struct ospf_lsa *lsa) IS_ROUTER_LSA_VIRTUAL (rlsa) ? " VL-endpoint" : "", IS_ROUTER_LSA_SHORTCUT (rlsa) ? " Shortcut" : ""); - vty_outln (vty, ""); + vty_out (vty, VTYNL); } vty_outln (vty, " LS Type: %s", lookup_msg(ospf_lsa_type_msg, lsa->data->type, NULL)); |