summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 495a50cfe..a3c95f461 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2878,11 +2878,8 @@ 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 && 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");
+ if (dead)
+ ast_debug(3, "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);