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
}
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);
}