aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_agi.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-28 15:38:03 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-28 15:38:03 +0000
commit71d61e3829cc8018e3a1499b37380974abe05ec6 (patch)
tree42f99d648c7c3f76a87a903b9f82212ee8f9d70f /res/res_agi.c
parent1d81780e8d5214df088163ca6a02fc4947a177ae (diff)
Fix a few log messages.
(closes issue #11396) Reported by: IgorG Patches: spell.v1.diff uploaded by IgorG (license 20) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89981 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_agi.c')
-rw-r--r--res/res_agi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 4599097c8..10c6902c3 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2117,7 +2117,7 @@ static int agi_exec_full(struct ast_channel *chan, void *data, int enhanced, int
return -1;
}
if (dead)
- ast_log(LOG_NOTICE, "Hungup channel detected, running agi in dead mode.");
+ ast_log(LOG_NOTICE, "Hungup channel detected, running agi in dead mode.\n");
ast_copy_string(buf, data, sizeof(buf));
memset(&agi, 0, sizeof(agi));
AST_STANDARD_APP_ARGS(args, tmp);
@@ -2203,7 +2203,7 @@ static int eagi_exec(struct ast_channel *chan, void *data)
static int deadagi_exec(struct ast_channel *chan, void *data)
{
- ast_log(LOG_WARNING, "DeadAGI has been deprecated, please use AGI in all cases!");
+ ast_log(LOG_WARNING, "DeadAGI has been deprecated, please use AGI in all cases!\n");
return agi_exec(chan, data);
}