diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2017-07-13 19:12:39 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-07-14 10:20:02 +0200 |
commit | 26a429fe8e49c67a375886a99a3687417379d19e (patch) | |
tree | c244b1a42b7eb8a402fff1a80b165a618cf7b19f /ripngd | |
parent | *: remove VTYNL, part 1 of 6 (diff) | |
download | frr-26a429fe8e49c67a375886a99a3687417379d19e.tar.xz frr-26a429fe8e49c67a375886a99a3687417379d19e.zip |
*: remove VTYNL, part 2 of 6
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ripngd')
-rw-r--r-- | ripngd/ripngd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ripngd/ripngd.c b/ripngd/ripngd.c index 4b5567f77..b90e28987 100644 --- a/ripngd/ripngd.c +++ b/ripngd/ripngd.c @@ -2425,7 +2425,7 @@ DEFUN (ripng_update_timer, update = strtoul (argv[0], &endptr, 10); if (update == ULONG_MAX || *endptr != '\0') { - vty_out (vty, "update timer value error%s", VTYNL); + vty_out (vty, "update timer value error\n"); return CMD_WARNING; } @@ -2460,7 +2460,7 @@ DEFUN (ripng_timeout_timer, timeout = strtoul (argv[0], &endptr, 10); if (timeout == ULONG_MAX || *endptr != '\0') { - vty_out (vty, "timeout timer value error%s", VTYNL); + vty_out (vty, "timeout timer value error\n"); return CMD_WARNING; } @@ -2493,7 +2493,7 @@ DEFUN (ripng_garbage_timer, garbage = strtoul (argv[0], &endptr, 10); if (garbage == ULONG_MAX || *endptr != '\0') { - vty_out (vty, "garbage timer value error%s", VTYNL); + vty_out (vty, "garbage timer value error\n"); return CMD_WARNING; } @@ -2577,7 +2577,7 @@ DEFUN (show_ipv6_protocols, if (! ripng) return CMD_SUCCESS; - vty_out (vty, "Routing Protocol is \"ripng\"%s", VTYNL); + vty_out (vty, "Routing Protocol is \"ripng\"\n"); vty_out (vty, "Sending updates every %ld seconds, next due in %d seconds%s", ripng->update_time, 0, |