X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fnetlink.c;h=c2e4c9b46bfa2d23fe92dcf04c4434794d5c6310;hb=92445ff3363441d0f515de4a3ab92a504cfc0366;hp=f597b01d3243b5ad890b5e096b51ebca2273841b;hpb=c28bc580c110c78741d0805c7652e05d994b0ff4;p=collectd.git diff --git a/src/netlink.c b/src/netlink.c index f597b01d..c2e4c9b4 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;