examples/myplugin.c: Use sstrncpy instead of strcpy.
authorSebastian Harl <sh@tokkee.org>
Fri, 25 Jul 2008 14:17:18 +0000 (16:17 +0200)
committerFlorian Forster <octo@huhu.verplant.org>
Sun, 27 Jul 2008 09:43:45 +0000 (11:43 +0200)
Signed-off-by: Florian Forster <octo@huhu.verplant.org>
contrib/examples/myplugin.c

index 240c6c3..f68cc1a 100644 (file)
@@ -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: "") */