From 7fa044f86ff47e4c8effc0cd2c7e91946ef75832 Mon Sep 17 00:00:00 2001
From: Mark Michelson <mmichelson@digium.com>
Date: Thu, 21 Feb 2008 17:44:34 +0000
Subject: [PATCH] Instead of a notice, make the message about a hung-up channel
 a debug message, and revert the original logic on the if statement. Thanks to
 Juggie for bringing this to my attention.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@104025 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 res/res_agi.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/res/res_agi.c b/res/res_agi.c
index 495a50cfe4..a3c95f4611 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);
-- 
GitLab