diff --git a/src/pcap-thread b/src/pcap-thread index ce7ddf46..49efa302 160000 --- a/src/pcap-thread +++ b/src/pcap-thread @@ -1 +1 @@ -Subproject commit ce7ddf46412e4a3e693e72953b6445a13b80e0d3 +Subproject commit 49efa3024fc9321d1ac6185f99b020c693674a69 diff --git a/src/pcap.c b/src/pcap.c index fb13c40e..07cb15cf 100644 --- a/src/pcap.c +++ b/src/pcap.c @@ -1020,9 +1020,6 @@ Pcap_run(void) return 0; } - /* TODO: Remove before release */ - dsyslogf(LOG_INFO, "Timed run set to %lu.%lu, now %lu.%lu", finish_ts.tv_sec, finish_ts.tv_usec, start_ts.tv_sec, start_ts.tv_usec); - if ((err = pcap_thread_run(&pcap_thread))) { if (err == PCAP_THREAD_ERRNO && errno == EINTR && sig_while_processing) { dsyslog(LOG_INFO, "pcap thread run interruped by signal"); @@ -1048,13 +1045,6 @@ Pcap_run(void) } } - /* TODO: Remove before release */ - { - struct timeval now = { 0, 0 }; - gettimeofday(&now, 0); - dsyslogf(LOG_INFO, "Ran to %lu.%lu", now.tv_sec, now.tv_usec); - } - if (sig_while_processing) finish_ts = last_ts;