X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=contrib%2Fexamples%2Fmyplugin.c;h=f68cc1ac85c090792efa1bfe9433272327b378fa;hb=e628f39838a67b40d52dfb8425b4d8474fbd0550;hp=240c6c3a8932cd0f8c31e485edf202ca96e93d38;hpb=a8d1499f57d3ffaff4c0ef3259a9fbf21b2953c5;p=collectd.git diff --git a/contrib/examples/myplugin.c b/contrib/examples/myplugin.c index 240c6c3a..f68cc1ac 100644 --- a/contrib/examples/myplugin.c +++ b/contrib/examples/myplugin.c @@ -98,8 +98,8 @@ static int my_read (void) vl.values = values; vl.values_len = 1; vl.time = time (NULL); - strcpy (vl.host, hostname_g); - strcpy (vl.plugin, "myplugin"); + sstrncpy (vl.host, hostname_g, sizeof (vl.host)); + sstrncpy (vl.plugin, "myplugin", sizeof (vl.plugin)); /* optionally set vl.plugin_instance and vl.type_instance to reasonable * values (default: "") */