mirror of
https://github.com/nmap/nmap.git
synced 2026-06-27 03:33:07 +00:00
Normalized log messages. No idea why I initially put underscores instead of spaces there.
This commit is contained in:
parent
809f1eda68
commit
3206c48aab
4 changed files with 4 additions and 4 deletions
|
|
@ -261,7 +261,7 @@ int epoll_loop(mspool *nsp, int msec_timeout) {
|
|||
}
|
||||
|
||||
do {
|
||||
nsock_log_debug_all(nsp, "wait_for_events");
|
||||
nsock_log_debug_all(nsp, "wait for events");
|
||||
|
||||
if (nsp->next_ev.tv_sec == 0)
|
||||
event_msecs = -1; /* None of the events specified a timeout */
|
||||
|
|
|
|||
|
|
@ -237,7 +237,7 @@ int kqueue_loop(mspool *nsp, int msec_timeout) {
|
|||
}
|
||||
|
||||
do {
|
||||
nsock_log_debug_all(nsp, "wait_for_events");
|
||||
nsock_log_debug_all(nsp, "wait for events");
|
||||
|
||||
if (nsp->next_ev.tv_sec == 0)
|
||||
event_msecs = -1; /* None of the events specified a timeout */
|
||||
|
|
|
|||
|
|
@ -311,7 +311,7 @@ int poll_loop(mspool *nsp, int msec_timeout) {
|
|||
return 0; /* No need to wait on 0 events ... */
|
||||
|
||||
do {
|
||||
nsock_log_debug_all(nsp, "wait_for_events");
|
||||
nsock_log_debug_all(nsp, "wait for events");
|
||||
|
||||
if (nsp->next_ev.tv_sec == 0)
|
||||
event_msecs = -1; /* None of the events specified a timeout */
|
||||
|
|
|
|||
|
|
@ -282,7 +282,7 @@ int select_loop(mspool *nsp, int msec_timeout) {
|
|||
return 0; /* No need to wait on 0 events ... */
|
||||
|
||||
do {
|
||||
nsock_log_debug_all(nsp, "wait_for_events");
|
||||
nsock_log_debug_all(nsp, "wait for events");
|
||||
|
||||
if (nsp->next_ev.tv_sec == 0)
|
||||
event_msecs = -1; /* None of the events specified a timeout */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue