[asterisk-commits] res pjsip outbound registration.c: Add missing line endings ... (asterisk[13])
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Wed Jun 24 08:38:52 CDT 2015
    
    
  
Matt Jordan has submitted this change and it was merged.
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(-)
Approvals:
  Kevin Harwell: Looks good to me, but someone else must approve
  Matt Jordan: Looks good to me, approved; Verified
  Joshua Colp: Looks good to me, but someone else must approve
diff --git a/res/res_pjsip_outbound_registration.c b/res/res_pjsip_outbound_registration.c
index 7eb4d97..391f1e1 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/685
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I39ae612746d892d2dbe86f3ff2d7027fa1da57f7
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Kevin Harwell <kharwell at digium.com>
Gerrit-Reviewer: Matt Jordan <mjordan at digium.com>
    
    
More information about the asterisk-commits
mailing list