From e053c56ef571b80d0ec6f85e1c69ce1d98c25fcc Mon Sep 17 00:00:00 2001 From: mmichelson Date: Thu, 21 Feb 2008 16:46:37 +0000 Subject: Don't print the fact that we are using dead mode in AGI if called from the 'h' extension since it is well-known that it will be running in dead mode. (closes issue #12046) Reported by: explidous git-svn-id: http://svn.digium.com/svn/asterisk/trunk@104020 f38db490-d61c-443f-a65b-d21fe96a405b --- res/res_agi.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'res/res_agi.c') diff --git a/res/res_agi.c b/res/res_agi.c index 402557408..495a50cfe 100644 --- a/res/res_agi.c +++ b/res/res_agi.c @@ -2878,7 +2878,10 @@ static int agi_exec_full(struct ast_channel *chan, void *data, int enhanced, int ast_log(LOG_WARNING, "AGI requires an argument (script)\n"); return -1; } - if (dead) + if (dead && strcmp(chan->exten, "h")) + /*No need to print this message if called from the 'h' extension, since it + * is well known that this is a hungup channel + */ 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)); -- cgit v1.2.3