[asterisk-commits] mmichelson: branch russell/ast_channel_ao2 r184145 - /team/russell/ast_channe...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Mar 24 19:10:21 CDT 2009
Author: mmichelson
Date: Tue Mar 24 19:10:17 2009
New Revision: 184145
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=184145
Log:
It helps to append the autochans to the proper channel >_<
Modified:
team/russell/ast_channel_ao2/main/autochan.c
Modified: team/russell/ast_channel_ao2/main/autochan.c
URL: http://svn.digium.com/svn-view/asterisk/team/russell/ast_channel_ao2/main/autochan.c?view=diff&rev=184145&r1=184144&r2=184145
==============================================================================
--- team/russell/ast_channel_ao2/main/autochan.c (original)
+++ team/russell/ast_channel_ao2/main/autochan.c Tue Mar 24 19:10:17 2009
@@ -76,7 +76,7 @@
{
struct ast_autochan *autochan;
- AST_LIST_APPEND_LIST(&old_chan->autochans, &new_chan->autochans, list);
+ AST_LIST_APPEND_LIST(&new_chan->autochans, &old_chan->autochans, list);
AST_LIST_TRAVERSE(&new_chan->autochans, autochan, list) {
if (autochan->chan == old_chan) {
More information about the asterisk-commits
mailing list