From: Vincent Bernat Date: Thu, 3 Feb 2022 19:21:39 +0000 (+0100) Subject: lldp: fix capitalization in error message X-Git-Tag: 1.0.14~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0eccbc09f4b3b28f83cd6a18e504e3a78f6f43f4;p=thirdparty%2Flldpd.git lldp: fix capitalization in error message --- diff --git a/src/daemon/protocols/lldp.c b/src/daemon/protocols/lldp.c index 411ed356..0b4b19eb 100644 --- a/src/daemon/protocols/lldp.c +++ b/src/daemon/protocols/lldp.c @@ -532,7 +532,7 @@ end: return 0; toobig: - log_info("lldp", "Cannot send LLDP packet for %s, Too big message", hardware->h_ifname); + log_info("lldp", "Cannot send LLDP packet for %s, too big message", hardware->h_ifname); free(packet); return E2BIG; }