X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fbind.c;h=b77a6418b9f94dfde0acbe4decf78c21aca45e52;hp=990e2ca7de4d0a17cc2c3c3ee25f8434d14c9e88;hb=a9e50e9e30ecde17e167e271060c8183bfcbf407;hpb=ba1015262cdc912f9d01ab5a76037e65033c54c5 diff --git a/src/bind.c b/src/bind.c index 990e2ca7..b77a6418 100644 --- a/src/bind.c +++ b/src/bind.c @@ -440,18 +440,14 @@ static int bind_xml_read_timestamp(const char *xpath_expression, /* {{{ */ #if HAVE_TIMEGM time_t t = timegm(&tm); if (t == ((time_t)-1)) { - char errbuf[1024]; - ERROR("bind plugin: timegm() failed: %s", - sstrerror(errno, errbuf, sizeof(errbuf))); + ERROR("bind plugin: timegm() failed: %s", STRERRNO); return -1; } *ret_value = t; #else time_t t = mktime(&tm); if (t == ((time_t)-1)) { - char errbuf[1024]; - ERROR("bind plugin: mktime() failed: %s", - sstrerror(errno, errbuf, sizeof(errbuf))); + ERROR("bind plugin: mktime() failed: %s", STRERRNO); return -1; } /* mktime assumes that tm is local time. Luckily, it also sets timezone to