mirror of
https://github.com/nmap/nmap.git
synced 2026-06-27 11:42:53 +00:00
Fixing a syntax problem (from the massping migration). 'and' was used instead of '&&' in scan_engine.cc, and failed on Windows.
This commit is contained in:
parent
a84a7d14c8
commit
a2cbf0cef4
1 changed files with 1 additions and 1 deletions
|
|
@ -2710,7 +2710,7 @@ static void doAnyNewProbes(UltraScanInfo *USI) {
|
|||
sending a probe. */
|
||||
unableToSend = NULL;
|
||||
hss = USI->nextIncompleteHost();
|
||||
while (hss != NULL and hss != unableToSend && USI->gstats->sendOK()) {
|
||||
while (hss != NULL && hss != unableToSend && USI->gstats->sendOK()) {
|
||||
if (hss->freshPortsLeft() && hss->sendOK(NULL)) {
|
||||
sendNextScanProbe(USI, hss);
|
||||
unableToSend = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue