summaryrefslogtreecommitdiff
path: root/ratatox.c
diff options
context:
space:
mode:
Diffstat (limited to 'ratatox.c')
-rw-r--r--ratatox.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/ratatox.c b/ratatox.c
index 8a56ea7..c380e96 100644
--- a/ratatox.c
+++ b/ratatox.c
@@ -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) {