mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
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:
@@ -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));
|
||||
|
Reference in New Issue
Block a user