]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
lldp: fix capitalization in error message
authorVincent Bernat <vincent@bernat.ch>
Thu, 3 Feb 2022 19:21:39 +0000 (20:21 +0100)
committerVincent Bernat <vincent@bernat.ch>
Thu, 3 Feb 2022 19:21:39 +0000 (20:21 +0100)
src/daemon/protocols/lldp.c

index 411ed3569ff21b55faf0de9350e2a0c9759011c2..0b4b19eb8c47f4ad581970d814f0f0b3607a614f 100644 (file)
@@ -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;
 }