1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 01:49:03 +00:00

Fix the silly mistake that happened when copying code (using wrong variables).

This commit is contained in:
d33tah
2013-08-09 17:07:12 +00:00
parent c68114f9bc
commit ece95926cb

View File

@@ -501,7 +501,7 @@ int fselect(int s, fd_set *rmaster, fd_set *wmaster, fd_set *emaster, struct tim
if (s > 1)
fds_ready = select(s, &rset, &wset, &eset, &stv);
else
usleep(tv->tv_sec * 1000000UL + tv->tv_usec);
usleep(stv->tv_sec * 1000000UL + stv->tv_usec);
if (fds_ready > -1 && win_stdin_ready()) {
FD_SET(STDIN_FILENO, &rset);