[asterisk-commits] russell: trunk r75402 - in /trunk: ./ res/res_agi.c

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


Author: russell
Date: Tue Jul 17 14:46:13 2007
New Revision: 75402

URL: http://svn.digium.com/view/asterisk?view=rev&rev=75402
Log:
Merged revisions 75401 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r75401 | russell | 2007-07-17 14:45:07 -0500 (Tue, 17 Jul 2007) | 3 lines

Remove a duplicated newline character in AGI debug output.
(closes issue #10207, patch by seanbright)

........

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

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

Modified: trunk/res/res_agi.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_agi.c?view=diff&rev=75402&r1=75401&r2=75402
==============================================================================
--- trunk/res/res_agi.c (original)
+++ trunk/res/res_agi.c Tue Jul 17 14:46:13 2007
@@ -133,7 +133,7 @@
 	}
 
 	if (agidebug)
-		ast_verbose("AGI Tx >> %s\n", stuff);
+		ast_verbose("AGI Tx >> %s", stuff);
 	ast_carefulwrite(fd, stuff, strlen(stuff), 100);
 	ast_free(stuff);
 }




More information about the asterisk-commits mailing list