[asterisk-commits] kmoore: trunk r412035 - in /trunk: ./ res/res_stasis_answer.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Apr 9 13:17:04 CDT 2014


Author: kmoore
Date: Wed Apr  9 13:17:01 2014
New Revision: 412035

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=412035
Log:
res_stasis_answer: Add missing newlines
........

Merged revisions 412034 from http://svn.asterisk.org/svn/asterisk/branches/12

Modified:
    trunk/   (props changed)
    trunk/res/res_stasis_answer.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.

Modified: trunk/res/res_stasis_answer.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_stasis_answer.c?view=diff&rev=412035&r1=412034&r2=412035
==============================================================================
--- trunk/res/res_stasis_answer.c (original)
+++ trunk/res/res_stasis_answer.c Wed Apr  9 13:17:01 2014
@@ -39,7 +39,7 @@
 	struct ast_channel *chan, void *data)
 {
 	const int delay = 0;
-	ast_debug(3, "%s: Answering",
+	ast_debug(3, "%s: Answering\n",
 		stasis_app_control_get_channel_id(control));
 	return __ast_answer(chan, delay);
 }
@@ -54,7 +54,7 @@
 	retval = stasis_app_send_command(control, app_control_answer, NULL);
 
 	if (retval != 0) {
-		ast_log(LOG_WARNING, "%s: Failed to answer channel",
+		ast_log(LOG_WARNING, "%s: Failed to answer channel\n",
 			stasis_app_control_get_channel_id(control));
 		return -1;
 	}




More information about the asterisk-commits mailing list