From: Donny Kavanagh Date: Thu, 6 Mar 2008 19:31:50 +0000 (+0000) Subject: trivial fix for an agi error when attempting to use EAGI on a dead/hungup channel... X-Git-Tag: 1.6.0-beta7~206 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4aadd3c77051d92be705b7ac1e0714f2b2a0de4f;p=thirdparty%2Fasterisk.git trivial fix for an agi error when attempting to use EAGI on a dead/hungup channel, we now print an error that makes sense given our removal of deadagi as an actual application. (closes issue #12161) Reported by: explidous Patches: res_agi_12161.patch uploaded by juggie (license 24) Tested by: juggie git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@106399 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_agi.c b/res/res_agi.c index dcde56353e..1d11f1fe49 100644 --- a/res/res_agi.c +++ b/res/res_agi.c @@ -2944,7 +2944,7 @@ static int eagi_exec(struct ast_channel *chan, void *data) int readformat, res; if (ast_check_hangup(chan)) { - ast_log(LOG_ERROR, "If you want to run AGI on hungup channels you should use DeadAGI!\n"); + ast_log(LOG_ERROR, "EAGI cannot be run on a dead/hungup channel, please use AGI.\n"); return 0; } readformat = chan->readformat;