X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_cmd_putval.c;h=bf3e2b6f2b9880cf50f6d602bf721ed42c51afb7;hb=9c962b99a3acd77f1d6e2499052b47356819511a;hp=43244f6185cad30df9561aafcee746f1171a28bc;hpb=9d3906a53e086d520b5ed71ca57118e8f589574b;p=collectd.git diff --git a/src/utils_cmd_putval.c b/src/utils_cmd_putval.c index 43244f61..bf3e2b6f 100644 --- a/src/utils_cmd_putval.c +++ b/src/utils_cmd_putval.c @@ -25,6 +25,7 @@ **/ #include "collectd.h" + #include "common.h" #include "plugin.h" @@ -163,7 +164,7 @@ int handle_putval (FILE *fh, char *buffer) sfree (identifier_copy); vl.values_len = ds->ds_num; - vl.values = (value_t *) malloc (vl.values_len * sizeof (value_t)); + vl.values = malloc (vl.values_len * sizeof (*vl.values)); if (vl.values == NULL) { print_to_socket (fh, "-1 malloc failed.\n"); @@ -218,7 +219,8 @@ int handle_putval (FILE *fh, char *buffer) } /* while (*buffer != 0) */ /* Done parsing the options. */ - print_to_socket (fh, "0 Success: %i %s been dispatched.\n", + if (fh!=stdout) + print_to_socket (fh, "0 Success: %i %s been dispatched.\n", values_submitted, (values_submitted == 1) ? "value has" : "values have");