[asterisk-commits] file: branch 1.4 r51148 - in /branches/1.4: ./
res/res_features.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Tue Jan 16 10:39:51 MST 2007
Author: file
Date: Tue Jan 16 11:39:50 2007
New Revision: 51148
URL: http://svn.digium.com/view/asterisk?view=rev&rev=51148
Log:
Merged revisions 51145 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r51145 | file | 2007-01-16 12:36:50 -0500 (Tue, 16 Jan 2007) | 2 lines
Return previous behavior. ParkedCalls will be able to do DTMF based transfers again. trunk however will get an option to allow this to be set on/off. (issue #8804 reported by nortex)
........
Modified:
branches/1.4/ (props changed)
branches/1.4/res/res_features.c
Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: branches/1.4/res/res_features.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/res/res_features.c?view=diff&rev=51148&r1=51147&r2=51148
==============================================================================
--- branches/1.4/res/res_features.c (original)
+++ branches/1.4/res/res_features.c Tue Jan 16 11:39:50 2007
@@ -1818,6 +1818,8 @@
ast_verbose(VERBOSE_PREFIX_3 "Channel %s connected to parked call %d\n", chan->name, park);
memset(&config, 0, sizeof(struct ast_bridge_config));
+ ast_set_flag(&(config.features_callee), AST_FEATURE_REDIRECT);
+ ast_set_flag(&(config.features_caller), AST_FEATURE_REDIRECT);
res = ast_bridge_call(chan, peer, &config);
/* Simulate the PBX hanging up */
More information about the asterisk-commits
mailing list