Merged revisions 286558 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.8

................
  r286558 | tilghman | 2010-09-13 18:50:34 -0500 (Mon, 13 Sep 2010) | 9 lines
  
  Merged revisions 286557 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.6.2
  
  ........
    r286557 | tilghman | 2010-09-13 18:48:51 -0500 (Mon, 13 Sep 2010) | 2 lines
    
    C precedence got me
  ........
................


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@286559 65c4cc65-6c06-0410-ace0-fbb531ad65f3
10-digiumphones
Tilghman Lesher 15 years ago
parent 77433168ea
commit a6adb398e9

@ -3785,9 +3785,9 @@ std: for (x = 0; x < AST_MAX_FDS; x++) { /* mark fds for next round */
continue; continue;
} }
*new_pfds = tmp; *new_pfds = tmp;
new_pfds[*new_nfds]->fd = chan->fds[x]; (*new_pfds)[*new_nfds].fd = chan->fds[x];
new_pfds[*new_nfds]->events = POLLIN | POLLERR; (*new_pfds)[*new_nfds].events = POLLIN | POLLERR;
new_pfds[*new_nfds]->revents = 0; (*new_pfds)[*new_nfds].revents = 0;
(*new_nfds)++; (*new_nfds)++;
} }
} }

Loading…
Cancel
Save