X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fprotocols.c;h=7bfa663c2a37b618c64292dcc35751da6d577328;hp=65b450c988fd6249ebe7b4131b5fd6ef1714f9c6;hb=54619dc85fd308b21ed09a0271e5c7383c7921b9;hpb=87f8f66a84e78fd37dd2767c032ce74924d31dfd diff --git a/src/protocols.c b/src/protocols.c index 65b450c9..7bfa663c 100644 --- a/src/protocols.c +++ b/src/protocols.c @@ -41,7 +41,8 @@ * Global variables */ static const char *config_keys[] = { - "Value", "IgnoreSelected", + "Value", + "IgnoreSelected", }; static int config_keys_num = STATIC_ARRAY_SIZE(config_keys); @@ -154,8 +155,8 @@ static int read_file(const char *path) { if (values_list != NULL) { char match_name[2 * DATA_MAX_NAME_LEN]; - snprintf(match_name, sizeof(match_name), "%s:%s", key_buffer, - key_fields[i]); + ssnprintf(match_name, sizeof(match_name), "%s:%s", key_buffer, + key_fields[i]); if (ignorelist_match(values_list, match_name)) continue;