[svn-commits] mjordan: branch 13 r421312 - /branches/13/res/ari/resource_channels.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Sun Aug 17 20:13:44 CDT 2014
Author: mjordan
Date: Sun Aug 17 20:13:41 2014
New Revision: 421312
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=421312
Log:
res/ari/resource_channels: Fix compilation issue
Forgot a parameter. Whoops.
Modified:
branches/13/res/ari/resource_channels.c
Modified: branches/13/res/ari/resource_channels.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/res/ari/resource_channels.c?view=diff&rev=421312&r1=421311&r2=421312
==============================================================================
--- branches/13/res/ari/resource_channels.c (original)
+++ branches/13/res/ari/resource_channels.c Sun Aug 17 20:13:41 2014
@@ -965,7 +965,8 @@
if (args->variable[strlen(args->variable) - 1] == ')') {
if (ast_func_read2(channel, args->variable, &value, 0)) {
ast_ari_response_error(
- response, 500, "Unable to read provided function");
+ response, 500, "Error With Function",
+ "Unable to read provided function");
return;
}
} else {
More information about the svn-commits
mailing list