From: Russell Bryant Date: Tue, 17 Jul 2007 19:45:07 +0000 (+0000) Subject: Remove a duplicated newline character in AGI debug output. X-Git-Tag: 1.4.8~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f40b0d2b4e91b2fd31587e3addb94f96192c93c;p=thirdparty%2Fasterisk.git Remove a duplicated newline character in AGI debug output. (closes issue #10207, patch by seanbright) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@75401 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_agi.c b/res/res_agi.c index 0c5174d0f1..96ceb7d0d9 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); }