X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fprotocols.c;h=a50539ef5a618e532ab821110fcc7d2b9444fb79;hp=12fbf45f70dc7d3e8c5fb046de7fb057ab882bf3;hb=a9e50e9e30ecde17e167e271060c8183bfcbf407;hpb=c7c89cc9618ef25cc9b0861ac2782cb1a5d6782d diff --git a/src/protocols.c b/src/protocols.c index 12fbf45f..a50539ef 100644 --- a/src/protocols.c +++ b/src/protocols.c @@ -87,9 +87,8 @@ static int read_file(const char *path) { fh = fopen(path, "r"); if (fh == NULL) { - ERROR("protocols plugin: fopen (%s) failed: %s.", path, - sstrerror(errno, key_buffer, sizeof(key_buffer))); - return (-1); + ERROR("protocols plugin: fopen (%s) failed: %s.", path, STRERRNO); + return -1; } status = -1; @@ -156,8 +155,8 @@ static int read_file(const char *path) { if (values_list != NULL) { char match_name[2 * DATA_MAX_NAME_LEN]; - ssnprintf(match_name, sizeof(match_name), "%s:%s", key_buffer, - key_fields[i]); + snprintf(match_name, sizeof(match_name), "%s:%s", key_buffer, + key_fields[i]); if (ignorelist_match(values_list, match_name)) continue; @@ -169,7 +168,7 @@ static int read_file(const char *path) { fclose(fh); - return (status); + return status; } /* int read_file */ static int protocols_read(void) { @@ -185,9 +184,9 @@ static int protocols_read(void) { success++; if (success == 0) - return (-1); + return -1; - return (0); + return 0; } /* int protocols_read */ static int protocols_config(const char *key, const char *value) { @@ -202,10 +201,10 @@ static int protocols_config(const char *key, const char *value) { invert = 0; ignorelist_set_invert(values_list, invert); } else { - return (-1); + return -1; } - return (0); + return 0; } /* int protocols_config */ void module_register(void) {