X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=contrib%2Fexamples%2Fmyplugin.c;h=f68cc1ac85c090792efa1bfe9433272327b378fa;hb=fd9c88963b04c9e9050a952ba0f018493e8b7638;hp=240c6c3a8932cd0f8c31e485edf202ca96e93d38;hpb=4f24183dea8b53a508654cba4d60df02a72a8bc0;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: "") */