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: https://origsvn.digium.com/svn/asterisk/trunk@104020 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson
2008-02-21 16:46:37 +00:00
parent edad328409
commit b403e214b1

View File

@@ -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"); ast_log(LOG_WARNING, "AGI requires an argument (script)\n");
return -1; 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_log(LOG_NOTICE, "Hungup channel detected, running agi in dead mode.\n");
ast_copy_string(buf, data, sizeof(buf)); ast_copy_string(buf, data, sizeof(buf));
memset(&agi, 0, sizeof(agi)); memset(&agi, 0, sizeof(agi));