From 2bc6301e39bb9cd9346cdcd2965df11109c0e226 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Fri, 5 Mar 2004 18:32:59 +0000 Subject: [PATCH] And of course return us as a winner git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2353 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channel.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/channel.c b/channel.c index 1f50afefbd..a56dfd91ee 100755 --- a/channel.c +++ b/channel.c @@ -893,8 +893,11 @@ struct ast_channel *ast_waitfor_nandfds(struct ast_channel **c, int n, int *fds, time(&now); for (x=0;xblocking = 0; - if (havewhen && c[x]->whentohangup && (now > c[x]->whentohangup)) + if (havewhen && c[x]->whentohangup && (now > c[x]->whentohangup)) { c[x]->_softhangup |= AST_SOFTHANGUP_TIMEOUT; + if (!winner) + winner = c[x]; + } for (y=0;yfds[y] > -1) { if ((FD_ISSET(c[x]->fds[y], &rfds) || FD_ISSET(c[x]->fds[y], &efds)) && !winner) {