Reverting behavior change (AGI should not exit non-zero on SUCCESS)

(closes issue #13434)
 Reported by: francesco_r


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@141503 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2008-09-06 15:23:42 +00:00
parent 9f079b3158
commit 0e8f3075bc

View File

@@ -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)