X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fnetlink.c;h=d14e5101dd885824b904b754845aa039dca05630;hb=d3fc6d0831a63af2e96300f488a9f8f5fc3183fb;hp=f597b01d3243b5ad890b5e096b51ebca2273841b;hpb=6b49eec15d421a74935fb1165c3e9fdb80ca838e;p=collectd.git diff --git a/src/netlink.c b/src/netlink.c index f597b01d..d14e5101 100644 --- a/src/netlink.c +++ b/src/netlink.c @@ -171,8 +171,8 @@ static void submit_one (const char *dev, const char *type, vl.values = values; vl.values_len = 1; vl.time = time (NULL); - strcpy (vl.host, hostname_g); - strcpy (vl.plugin, "netlink"); + sstrncpy (vl.host, hostname_g, sizeof (vl.host)); + sstrncpy (vl.plugin, "netlink", sizeof (vl.plugin)); sstrncpy (vl.plugin_instance, dev, sizeof (vl.plugin_instance)); sstrncpy (vl.type, type, sizeof (vl.type)); @@ -195,8 +195,8 @@ static void submit_two (const char *dev, const char *type, vl.values = values; vl.values_len = 2; vl.time = time (NULL); - strcpy (vl.host, hostname_g); - strcpy (vl.plugin, "netlink"); + sstrncpy (vl.host, hostname_g, sizeof (vl.host)); + sstrncpy (vl.plugin, "netlink", sizeof (vl.plugin)); sstrncpy (vl.plugin_instance, dev, sizeof (vl.plugin_instance)); sstrncpy (vl.type, type, sizeof (vl.type)); @@ -207,7 +207,7 @@ static void submit_two (const char *dev, const char *type, } /* void submit_two */ static int link_filter (const struct sockaddr_nl *sa, - const struct nlmsghdr *nmh, void *args) + struct nlmsghdr *nmh, void *args) { struct ifinfomsg *msg; int msg_len; @@ -317,7 +317,7 @@ static int link_filter (const struct sockaddr_nl *sa, } /* int link_filter */ static int qos_filter (const struct sockaddr_nl *sa, - const struct nlmsghdr *nmh, void *args) + struct nlmsghdr *nmh, void *args) { struct tcmsg *msg; int msg_len; @@ -364,7 +364,7 @@ static int qos_filter (const struct sockaddr_nl *sa, if (msg->tcm_ifindex >= iflist_len) { ERROR ("netlink plugin: qos_filter: msg->tcm_ifindex = %i " - ">= iflist_len = %i", + ">= iflist_len = %zu", msg->tcm_ifindex, iflist_len); return (-1); }