From b76f6dfa42ad59b6fb3c6387980a1b2680275995 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Thu, 1 Dec 2022 12:48:43 +0100 Subject: [PATCH] device/mtu: clean up mtu message --- src/util-ioctl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/util-ioctl.c b/src/util-ioctl.c index b415e255f4..c5eb0a26a6 100644 --- a/src/util-ioctl.c +++ b/src/util-ioctl.c @@ -108,8 +108,7 @@ int GetIfaceMTU(const char *pcap_dev) return -1; } close(fd); - SCLogInfo("Found an MTU of %d for '%s'", ifr.ifr_mtu, - pcap_dev); + SCLogInfo("%s: MTU %d", pcap_dev, ifr.ifr_mtu); return ifr.ifr_mtu; #elif defined OS_WIN32 return GetIfaceMTUWin32(pcap_dev);