Treewide: replace ssnprintf with snprintf
[collectd.git] / src / gmond.c
index c680427..75643c4 100644 (file)
@@ -417,7 +417,7 @@ static staging_entry_t *staging_entry_get(const char *host, /* {{{ */
   if (staging_tree == NULL)
     return NULL;
 
-  ssnprintf(key, sizeof(key), "%s/%s/%s", host, type,
+  snprintf(key, sizeof(key), "%s/%s/%s", host, type,
             (type_instance != NULL) ? type_instance : "");
 
   se = NULL;