summaryrefslogtreecommitdiffstats
path: root/ospfd
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2017-07-13 19:04:25 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2017-07-14 10:20:02 +0200
commit6d3c2ed4edb863d108239132b3e01daf07024f65 (patch)
treecca9737fab2548ec43a31def39cfab5a8affc83f /ospfd
parentospf6d: VNL -> VTYNL (diff)
downloadfrr-6d3c2ed4edb863d108239132b3e01daf07024f65.tar.xz
frr-6d3c2ed4edb863d108239132b3e01daf07024f65.zip
*: remove VTYNL, part 1 of 6
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospfd')
-rw-r--r--ospfd/ospf_apiserver.c2
-rw-r--r--ospfd/ospf_dump.c2
-rw-r--r--ospfd/ospf_vty.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/ospfd/ospf_apiserver.c b/ospfd/ospf_apiserver.c
index c2e158931..2b72abcd7 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_out (vty, VTYNL);
+ vty_out (vty, "\n");
}
else
{
diff --git a/ospfd/ospf_dump.c b/ospfd/ospf_dump.c
index 7d0c9d6ba..61b4a2ff1 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_out (vty, " OSPF NSSA debugging is on\n");
- vty_out (vty, VTYNL);
+ vty_out (vty, "\n");
return CMD_SUCCESS;
}
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c
index b2f9b21f4..b0405f098 100644
--- a/ospfd/ospf_vty.c
+++ b/ospfd/ospf_vty.c
@@ -4726,7 +4726,7 @@ show_lsa_summary (struct vty *vty, struct ospf_lsa *lsa, int self)
default:
break;
}
- vty_out (vty, VTYNL);
+ vty_out (vty, "\n");
}
return 0;
@@ -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_out (vty, VTYNL);
+ vty_out (vty, "\n");
}
vty_out (vty, " LS Type: %s\n",
lookup_msg(ospf_lsa_type_msg, lsa->data->type, NULL));
@@ -8362,7 +8362,7 @@ config_write_interface (struct vty *vty)
vty_out (vty, " area %s", inet_ntoa (params->if_area));
if (params != IF_DEF_PARAMS (ifp))
vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
- vty_out (vty, VTYNL);
+ vty_out (vty, "\n");
}
/* bfd print. */