mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
Fix a constant conditional
This commit is contained in:
@@ -603,7 +603,7 @@ void FPNetworkControl::response_reception_handler(nsock_pool nsp, nsock_event ns
|
||||
} else if (status == NSE_STATUS_EOF) {
|
||||
if (o.debugging)
|
||||
log_write(LOG_PLAIN, "response_reception_handler(): EOF\n");
|
||||
} else if (status == NSE_STATUS_ERROR || NSE_STATUS_PROXYERROR) {
|
||||
} else if (status == NSE_STATUS_ERROR || status == NSE_STATUS_PROXYERROR) {
|
||||
if (o.debugging)
|
||||
log_write(LOG_PLAIN, "response_reception_handler(): %s failed: %s\n", nse_type2str(type), strerror(socket_errno()));
|
||||
} else if (status == NSE_STATUS_TIMEOUT) {
|
||||
|
||||
Reference in New Issue
Block a user