[asterisk-commits] mmichelson: trunk r357774 - /trunk/channels/chan_dahdi.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Mar 1 19:25:41 CST 2012


Author: mmichelson
Date: Thu Mar  1 19:25:36 2012
New Revision: 357774

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=357774
Log:
Fix compilation error due to typo during channel opaquification.

s/ast_channel_fd_set/ast_channel_internal_fd_set/g


Modified:
    trunk/channels/chan_dahdi.c

Modified: trunk/channels/chan_dahdi.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_dahdi.c?view=diff&rev=357774&r1=357773&r2=357774
==============================================================================
--- trunk/channels/chan_dahdi.c (original)
+++ trunk/channels/chan_dahdi.c Thu Mar  1 19:25:36 2012
@@ -3078,7 +3078,7 @@
 	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;
 	}




More information about the asterisk-commits mailing list