mirror of
https://github.com/nmap/nmap.git
synced 2025-12-16 04:39:03 +00:00
if (tcp_rpc_socket > max_sd) max_sd = tcp_rpc_socket; The condition is always true because max_sd is initialized to -1 and that block of code is entered only if tcp_rpc_socket > -1. It looks like the kind of thing that would be managing a large set of sockets for select, but here we're only selecting on one socket at a time. This was suggested by Lionel Cons.
26 KiB
26 KiB