[asterisk-commits] russell: branch 1.4 r75401 - /branches/1.4/res/res_agi.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jul 17 14:45:07 CDT 2007


Author: russell
Date: Tue Jul 17 14:45:07 2007
New Revision: 75401

URL: http://svn.digium.com/view/asterisk?view=rev&rev=75401
Log:
Remove a duplicated newline character in AGI debug output.
(closes issue #10207, patch by seanbright)

Modified:
    branches/1.4/res/res_agi.c

Modified: branches/1.4/res/res_agi.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/res/res_agi.c?view=diff&rev=75401&r1=75400&r2=75401
==============================================================================
--- branches/1.4/res/res_agi.c (original)
+++ branches/1.4/res/res_agi.c Tue Jul 17 14:45:07 2007
@@ -128,7 +128,7 @@
 		ast_log(LOG_ERROR, "Out of memory\n");
 	} else {
 		if (agidebug)
-			ast_verbose("AGI Tx >> %s\n", stuff);
+			ast_verbose("AGI Tx >> %s", stuff); /* \n provided by caller */
 		ast_carefulwrite(fd, stuff, strlen(stuff), 100);
 		free(stuff);
 	}




More information about the asterisk-commits mailing list