Merge pull request #50 from crawford/wpcapslip

Correcting wait behavior for wpcapslip tool
This commit is contained in:
Fredrik Österlind 2012-12-03 04:20:19 -08:00
commit eec7fcd8a8
2 changed files with 1 additions and 1 deletions

View file

@ -1321,7 +1321,7 @@ main(int argc, char **argv)
tv.tv_usec = 10;
ret = select(maxfd + 1, &rset, &wset, NULL, &tv);
}
if(ret == -1 && errno != EINTR) {
if(ret == -1 && errno != EINTR && errno != EAGAIN) {
err(1, "select");
}
else if(ret > 0) {