aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-09-06 15:23:42 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-09-06 15:23:42 +0000
commita1670a95b20a5009a251c87976e29d9fb24e4c2b (patch)
tree00dad4f17855c2ffb84d3ed177dbde5d4cd507d6
parent4ea46731fe58ccc3644d025b0013ded24432c09c (diff)
Reverting behavior change (AGI should not exit non-zero on SUCCESS)
(closes issue #13434) Reported by: francesco_r git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@141503 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--res/res_agi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 2ab5b8b31..20bb9331b 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2092,7 +2092,7 @@ static int agi_exec_full(struct ast_channel *chan, void *data, int enhanced, int
return -1;
}
- return res;
+ return 0;
}
static int agi_exec(struct ast_channel *chan, void *data)