From af66b0f3f7d4e85b85d3efb9377d14de0a8895f0 Mon Sep 17 00:00:00 2001
From: Richard Mudgett <rmudgett@digium.com>
Date: Wed, 17 Jun 2015 16:23:52 -0500
Subject: [PATCH] res_pjsip_outbound_registration.c: Add missing line endings
 to CLI commands

Change-Id: I39ae612746d892d2dbe86f3ff2d7027fa1da57f7
---
 res/res_pjsip_outbound_registration.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/res/res_pjsip_outbound_registration.c b/res/res_pjsip_outbound_registration.c
index 23c8010598..ab01edaee7 100644
--- a/res/res_pjsip_outbound_registration.c
+++ b/res/res_pjsip_outbound_registration.c
@@ -1357,7 +1357,7 @@ static char *cli_unregister(struct ast_cli_entry *e, int cmd, struct ast_cli_arg
 	}
 
 	if (queue_unregister(state)) {
-		ast_cli(a->fd, "Failed to queue unregistration");
+		ast_cli(a->fd, "Failed to queue unregistration\n");
 	}
 
 	ao2_ref(state, -1);
@@ -1397,9 +1397,9 @@ static char *cli_register(struct ast_cli_entry *e, int cmd, struct ast_cli_args
 	 * to be queued as separate tasks.
 	 */
 	if (queue_unregister(state)) {
-		ast_cli(a->fd, "Failed to queue unregistration");
+		ast_cli(a->fd, "Failed to queue unregistration\n");
 	} else if (queue_register(state)) {
-		ast_cli(a->fd, "Failed to queue registration");
+		ast_cli(a->fd, "Failed to queue registration\n");
 	}
 
 	ao2_ref(state, -1);
-- 
GitLab