aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/interface.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/interface.c b/src/interface.c
index f74d4d41a..bfc50cd37 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -478,7 +478,6 @@ int doIOForInterfaces(void)
fd_set rfds;
fd_set wfds;
fd_set efds;
- struct timeval tv, *tvp = NULL;
int i;
int selret;
int fdmax;
@@ -492,7 +491,7 @@ int doIOForInterfaces(void)
registered_IO_add_fds(&fdmax, &rfds, &wfds, &efds);
- selret = select(fdmax + 1, &rfds, &wfds, &efds, tvp);
+ selret = select(fdmax + 1, &rfds, &wfds, &efds, NULL);
if (selret < 0 && errno == EINTR)
break;
@@ -525,9 +524,7 @@ int doIOForInterfaces(void)
}
}
- tv.tv_sec = 0;
- tv.tv_usec = 0;
- tvp = &tv;
+ break;
}
return 1;