mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-28 18:51:30 +00:00
Fix compilation error due to typo during channel opaquification.
s/ast_channel_fd_set/ast_channel_internal_fd_set/g git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@357774 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3078,7 +3078,7 @@ static void my_pri_fixup_chans(void *chan_old, void *chan_new)
|
||||
old_chan->owner = NULL;
|
||||
if (new_chan->owner) {
|
||||
ast_channel_tech_pvt_set(new_chan->owner, new_chan);
|
||||
ast_channel_fd_set(new_chan->owner, 0, new_chan->subs[SUB_REAL].dfd);
|
||||
ast_channel_internal_fd_set(new_chan->owner, 0, new_chan->subs[SUB_REAL].dfd);
|
||||
new_chan->subs[SUB_REAL].owner = old_chan->subs[SUB_REAL].owner;
|
||||
old_chan->subs[SUB_REAL].owner = NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user