diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2017-07-13 18:50:29 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2017-07-14 10:19:58 +0200 | 
| commit | 181039f3d7a5f59ed31274210a9626f2cc5f673e (patch) | |
| tree | 945a074b1f8f7bd53c21e6b65ec7e08de15b2121 /ldpd/ldp_debug.c | |
| parent | 5c7571d43f57317b0827ac82fbebc4cdc6865be0 (diff) | |
*: ditch vty_outln(), part 2 of 2
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ldpd/ldp_debug.c')
| -rw-r--r-- | ldpd/ldp_debug.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/ldpd/ldp_debug.c b/ldpd/ldp_debug.c index c5f444ecd3..bf2de7b686 100644 --- a/ldpd/ldp_debug.c +++ b/ldpd/ldp_debug.c @@ -116,13 +116,13 @@ ldp_vty_show_debugging(struct vty *vty)  	if (LDP_DEBUG(event, EVENT))  		vty_out (vty, "  LDP events debugging is on\n");  	if (LDP_DEBUG(msg, MSG_RECV_ALL)) -		vty_outln (vty, -			  "  LDP detailed messages debugging is on " "(inbound)"); +		vty_out (vty, +			  "  LDP detailed messages debugging is on (inbound)\n");  	else if (LDP_DEBUG(msg, MSG_RECV))  		vty_out (vty,"  LDP messages debugging is on (inbound)\n");  	if (LDP_DEBUG(msg, MSG_SEND_ALL)) -		vty_outln (vty, -			  "  LDP detailed messages debugging is on " "(outbound)"); +		vty_out (vty, +			  "  LDP detailed messages debugging is on (outbound)\n");  	else if (LDP_DEBUG(msg, MSG_SEND))  		vty_out (vty,"  LDP messages debugging is on (outbound)\n");  	if (LDP_DEBUG(zebra, ZEBRA))  | 
