From: Victor Julien Date: Wed, 30 Nov 2022 15:14:11 +0000 (+0100) Subject: pcap-file: output cleanups X-Git-Tag: suricata-7.0.0-rc1~251 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=181400bfddd1763d31cf0aff73584e869bda8b7c;p=thirdparty%2Fsuricata.git pcap-file: output cleanups --- diff --git a/src/source-pcap-file.c b/src/source-pcap-file.c index 417196556d..97f424943e 100644 --- a/src/source-pcap-file.c +++ b/src/source-pcap-file.c @@ -387,12 +387,8 @@ void ReceivePcapFileThreadExitStats(ThreadVars *tv, void *data) SCLogInfo("1/%" PRIu64 "th of packets have an invalid checksum", chrate); } - SCLogNotice( - "Pcap-file module read %" PRIu64 " files, %" PRIu64 " packets, %" PRIu64 " bytes", - ptv->shared.files, - ptv->shared.pkts, - ptv->shared.bytes - ); + SCLogNotice("read %" PRIu64 " files, %" PRIu64 " packets, %" PRIu64 " bytes", + ptv->shared.files, ptv->shared.pkts, ptv->shared.bytes); } }