X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flog_logstash.c;h=de34b0ea53f78b844cb37cb5ddcadca28d57a847;hb=0b7cd83a5e6bac068ea83a88a5ddcfb07c09fbec;hp=060593047d5d447db90f1843d7aa6c2dcfffd123;hpb=64b8150edec2271bb110f36e70915fdd87d9cac2;p=collectd.git diff --git a/src/log_logstash.c b/src/log_logstash.c index 06059304..de34b0ea 100644 --- a/src/log_logstash.c +++ b/src/log_logstash.c @@ -160,9 +160,8 @@ static void log_logstash_print(yajl_gen g, int severity, } if (fh == NULL) { - char errbuf[1024]; fprintf(stderr, "log_logstash plugin: fopen (%s) failed: %s\n", log_file, - sstrerror(errno, errbuf, sizeof(errbuf))); + STRERRNO); } else { fprintf(fh, "%s\n", buf); if (do_close) { @@ -236,7 +235,7 @@ static int log_logstash_notification(const notification_t *n, if (g == NULL) { fprintf(stderr, "Could not allocate JSON generator.\n"); - return (0); + return 0; } if (yajl_gen_map_open(g) != yajl_gen_status_ok) @@ -323,12 +322,12 @@ static int log_logstash_notification(const notification_t *n, } log_logstash_print(g, LOG_INFO, (n->time != 0) ? n->time : cdtime()); - return (0); + return 0; err: yajl_gen_free(g); fprintf(stderr, "Could not correctly generate JSON notification\n"); - return (0); + return 0; } /* int log_logstash_notification */ void module_register(void) {