Merged revisions 75401 via svnmerge from
authorRussell Bryant <russell@russellbryant.com>
Tue, 17 Jul 2007 19:46:13 +0000 (19:46 +0000)
committerRussell Bryant <russell@russellbryant.com>
Tue, 17 Jul 2007 19:46:13 +0000 (19:46 +0000)
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)

........

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@75402 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_agi.c

index a692399..e5b62fe 100644 (file)
@@ -133,7 +133,7 @@ static void agi_debug_cli(int fd, char *fmt, ...)
        }
 
        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);
 }