]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 141503 via svnmerge from
authorTilghman Lesher <tilghman@meg.abyt.es>
Sat, 6 Sep 2008 15:26:45 +0000 (15:26 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Sat, 6 Sep 2008 15:26:45 +0000 (15:26 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r141503 | tilghman | 2008-09-06 10:23:42 -0500 (Sat, 06 Sep 2008) | 4 lines

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/trunk@141504 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_agi.c

index 35e1d7e4146208ae26b0cbe376a0ce7d1d3b6992..02b666c385e6950cb63068d041446b4ce64b28fa 100644 (file)
@@ -2948,7 +2948,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)