X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fprotocols.c;h=7bfa663c2a37b618c64292dcc35751da6d577328;hp=65b450c988fd6249ebe7b4131b5fd6ef1714f9c6;hb=d931e9e904f61e28013c01ee6903985d3c9f0ba8;hpb=ff8b75e1820552a8bbd1832544451723cbde768b 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;