aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-17 19:45:07 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-17 19:45:07 +0000
commit92dd72cc354025cbb58349d1e4da1cd018d8b232 (patch)
treeb6b49e30c98f533fec4fbdc5bd55b3d554b5be5c /res
parent7721476810ee94fd5d59251428750849a7fb7813 (diff)
Remove a duplicated newline character in AGI debug output.
(closes issue #10207, patch by seanbright) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@75401 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 0c5174d0f..96ceb7d0d 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -128,7 +128,7 @@ static void agi_debug_cli(int fd, char *fmt, ...)
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);
}