[asterisk-commits] file: trunk r102379 - in /trunk: ./ res/res_clioriginate.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Feb 5 09:10:37 CST 2008
Author: file
Date: Tue Feb 5 09:10:36 2008
New Revision: 102379
URL: http://svn.digium.com/view/asterisk?view=rev&rev=102379
Log:
Merged revisions 102378 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r102378 | file | 2008-02-05 11:09:29 -0400 (Tue, 05 Feb 2008) | 4 lines
Perform dialing asynchronously when using the originate CLI command so the CLI does not appear to block.
(closes issue #11927)
Reported by: bbhoss
........
Modified:
trunk/ (props changed)
trunk/res/res_clioriginate.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/res/res_clioriginate.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_clioriginate.c?view=diff&rev=102379&r1=102378&r2=102379
==============================================================================
--- trunk/res/res_clioriginate.c (original)
+++ trunk/res/res_clioriginate.c Tue Feb 5 09:10:36 2008
@@ -64,7 +64,7 @@
return CLI_SHOWUSAGE;
}
- ast_pbx_outgoing_app(chantech, AST_FORMAT_SLINEAR, chandata, TIMEOUT * 1000, app, appdata, &reason, 1, NULL, NULL, NULL, NULL, NULL);
+ ast_pbx_outgoing_app(chantech, AST_FORMAT_SLINEAR, chandata, TIMEOUT * 1000, app, appdata, &reason, 0, NULL, NULL, NULL, NULL, NULL);
return CLI_SUCCESS;
}
@@ -103,7 +103,7 @@
if (ast_strlen_zero(context))
context = "default";
- ast_pbx_outgoing_exten(chantech, AST_FORMAT_SLINEAR, chandata, TIMEOUT * 1000, context, exten, 1, &reason, 1, NULL, NULL, NULL, NULL, NULL);
+ ast_pbx_outgoing_exten(chantech, AST_FORMAT_SLINEAR, chandata, TIMEOUT * 1000, context, exten, 1, &reason, 0, NULL, NULL, NULL, NULL, NULL);
return CLI_SUCCESS;
}
More information about the asterisk-commits
mailing list