diff options
author | sin <sin@2f30.org> | 2014-09-17 18:35:50 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-09-17 18:35:50 +0100 |
commit | 6692dbe514e613ed999e219a392d009ddce1e048 (patch) | |
tree | 84916068167041646e7925e34cafaac7458fc54d /ratatox.c | |
parent | 53688edc3d5b03fbee370c720072bd95bc6982a3 (diff) |
Fix select() spin
Diffstat (limited to 'ratatox.c')
-rw-r--r-- | ratatox.c | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -1031,7 +1031,7 @@ loop(void) struct friend *f; time_t t0, t1; int connected = 0; - int i, m, n; + int i, n; int fdmax; fd_set rfds; struct timeval tv; @@ -1061,12 +1061,9 @@ loop(void) fdmax = STDIN_FILENO; for (i = 0; i < LEN(gslots); i++) { - for (m = 0; m < LEN(gfiles); m++) { - FD_SET(gslots[i].fd[m], &rfds); - if (gslots[i].fd[m] > fdmax) { - fdmax = gslots[i].fd[m]; - } - } + FD_SET(gslots[i].fd[IN], &rfds); + if (gslots[i].fd[IN] > fdmax) + fdmax = gslots[i].fd[IN]; } TAILQ_FOREACH(f, &friendhead, entry) { |