[asterisk-commits] tilghman: branch 1.4 r141503 - /branches/1.4/res/res_agi.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sat Sep 6 10:23:43 CDT 2008


Author: tilghman
Date: Sat Sep  6 10:23:42 2008
New Revision: 141503

URL: http://svn.digium.com/view/asterisk?view=rev&rev=141503
Log:
Reverting behavior change (AGI should not exit non-zero on SUCCESS)
(closes issue #13434)
 Reported by: francesco_r

Modified:
    branches/1.4/res/res_agi.c

Modified: branches/1.4/res/res_agi.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/res/res_agi.c?view=diff&rev=141503&r1=141502&r2=141503
==============================================================================
--- branches/1.4/res/res_agi.c (original)
+++ branches/1.4/res/res_agi.c Sat Sep  6 10:23:42 2008
@@ -2092,7 +2092,7 @@
 		return -1;
 	}
 
-	return res;
+	return 0;
 }
 
 static int agi_exec(struct ast_channel *chan, void *data)




More information about the asterisk-commits mailing list