On Mon, Apr 06, 2009 at 07:26:37PM +0200, Bernd Ahlers wrote: > @@ -871,13 +871,15 @@ unsigned long approxidate(const char *date) > struct timeval tv; > + time_t time_sec; > [...] > gettimeofday(&tv, NULL); > - localtime_r(&tv.tv_sec, &tm); > + time_sec = tv.tv_sec; > + localtime_r(&time_sec, &tm); Hmph. According to POSIX, tv_sec _is_ a time_t. But I see on FreeBSD, also, it is actually a "long". So I think this fix makes sense. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html