[Asterisk-code-review] res pjsip outbound registration.c: Add missing line endings ... (asterisk[master])

Richard Mudgett asteriskteam at digium.com
Tue Jun 23 13:52:12 CDT 2015


Richard Mudgett has uploaded a new change for review.

  https://gerrit.asterisk.org/699

Change subject: res_pjsip_outbound_registration.c: Add missing line endings to CLI commands
......................................................................

res_pjsip_outbound_registration.c: Add missing line endings to CLI commands

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


  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/99/699/1

diff --git a/res/res_pjsip_outbound_registration.c b/res/res_pjsip_outbound_registration.c
index 23c8010..ab01eda 100644
--- a/res/res_pjsip_outbound_registration.c
+++ b/res/res_pjsip_outbound_registration.c
@@ -1357,7 +1357,7 @@
 	}
 
 	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 @@
 	 * 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);

-- 
To view, visit https://gerrit.asterisk.org/699
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I39ae612746d892d2dbe86f3ff2d7027fa1da57f7
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>



More information about the asterisk-code-review mailing list