redis allows passwords up to 512 characters long
[collectd.git] / src / utils_ignorelist.c
index 689b4a4..de42d0f 100644 (file)
@@ -311,8 +311,7 @@ int ignorelist_add (ignorelist_t *il, const char *entry)
                /* We need to copy `entry' since it's const */
                entry_copy_size = entry_len - 1;
                entry_copy = smalloc (entry_copy_size);
-               strncpy (entry_copy, entry + 1, entry_copy_size);
-               entry_copy[entry_copy_size - 1] = 0;
+               sstrncpy (entry_copy, entry + 1, entry_copy_size);
 
                DEBUG("I'm about to add regex entry: %s", entry_copy);
                ret = ignorelist_append_regex(il, entry_copy);