X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fbind.c;h=44efcfd55ba58982d6fdb2244a54ecac3b4e19b1;hp=587403d07727341fcb23e10ae1c9ba92ffa2f0e9;hb=1641c82ec4e14968ea31021dfb8b520df5f4483a;hpb=495849c9653298279575edd460b9a4da1df6a678 diff --git a/src/bind.c b/src/bind.c index 587403d0..44efcfd5 100644 --- a/src/bind.c +++ b/src/bind.c @@ -21,12 +21,19 @@ * Florian Forster **/ +#define _XOPEN_SOURCE 600 /* glibc2 needs this for strptime */ #include "collectd.h" #include "common.h" #include "plugin.h" #include "configfile.h" +/* Some versions of libcurl don't include this themselves and then don't have + * fd_set available. */ +#if HAVE_SYS_SELECT_H +# include +#endif + #include #include #include @@ -459,7 +466,7 @@ static int bind_xml_read_timestamp (const char *xpath_expression, /* {{{ */ return (-1); } - *ret_value = timegm(&tm); + *ret_value = mktime(&tm); xmlXPathFreeObject (xpathObj); return (0);