X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Futils_cmd_getthreshold.c;h=c1f3f562ca4c924b7794759fc505e72664e24e3f;hp=926375d63a1db2a79e73a50b486548cbe12eb0a8;hb=06a86a60a7dabc685bdbd81ce3d36ea5f7e2c2d4;hpb=7e9462557c1fab6d9c72e58ac5f25952288b883e diff --git a/src/utils_cmd_getthreshold.c b/src/utils_cmd_getthreshold.c index 926375d6..c1f3f562 100644 --- a/src/utils_cmd_getthreshold.c +++ b/src/utils_cmd_getthreshold.c @@ -36,9 +36,8 @@ #define print_to_socket(fh, ...) \ if (fprintf(fh, __VA_ARGS__) < 0) { \ - char errbuf[1024]; \ WARNING("handle_getthreshold: failed to write to socket #%i: %s", \ - fileno(fh), sstrerror(errno, errbuf, sizeof(errbuf))); \ + fileno(fh), STRERRNO); \ return -1; \ } @@ -59,7 +58,7 @@ int handle_getthreshold(FILE *fh, char *buffer) { size_t i; if ((fh == NULL) || (buffer == NULL)) - return (-1); + return -1; DEBUG("utils_cmd_getthreshold: handle_getthreshold (fh = %p, buffer = %s);", (void *)fh, buffer); @@ -68,26 +67,26 @@ int handle_getthreshold(FILE *fh, char *buffer) { status = parse_string(&buffer, &command); if (status != 0) { print_to_socket(fh, "-1 Cannot parse command.\n"); - return (-1); + return -1; } assert(command != NULL); if (strcasecmp("GETTHRESHOLD", command) != 0) { print_to_socket(fh, "-1 Unexpected command: `%s'.\n", command); - return (-1); + return -1; } identifier = NULL; status = parse_string(&buffer, &identifier); if (status != 0) { print_to_socket(fh, "-1 Cannot parse identifier.\n"); - return (-1); + return -1; } assert(identifier != NULL); if (*buffer != 0) { print_to_socket(fh, "-1 Garbage after end of command: %s\n", buffer); - return (-1); + return -1; } /* parse_identifier() modifies its first argument, @@ -101,7 +100,7 @@ int handle_getthreshold(FILE *fh, char *buffer) { DEBUG("handle_getthreshold: Cannot parse identifier `%s'.", identifier); print_to_socket(fh, "-1 Cannot parse identifier `%s'.\n", identifier); sfree(identifier_copy); - return (-1); + return -1; } value_list_t vl = {.values = NULL}; @@ -118,10 +117,10 @@ int handle_getthreshold(FILE *fh, char *buffer) { if (status == ENOENT) { print_to_socket(fh, "-1 No threshold found for identifier %s\n", identifier); - return (0); + return 0; } else if (status != 0) { print_to_socket(fh, "-1 Error while looking up threshold: %i\n", status); - return (-1); + return -1; } /* Lets count the number of lines we'll return. */ @@ -152,7 +151,7 @@ int handle_getthreshold(FILE *fh, char *buffer) { i++; /* Print the response */ - print_to_socket(fh, "%zu Threshold found\n", i); + print_to_socket(fh, "%" PRIsz " Threshold found\n", i); if (threshold.host[0] != 0) print_to_socket(fh, "Host: %s\n", threshold.host); @@ -179,7 +178,5 @@ int handle_getthreshold(FILE *fh, char *buffer) { if (threshold.hits > 1) print_to_socket(fh, "Hits: %i\n", threshold.hits); - return (0); + return 0; } /* int handle_getthreshold */ - -/* vim: set sw=2 sts=2 ts=8 et : */