-const char parsers_rcs[] = "$Id: parsers.c,v 1.157 2009/05/16 13:27:20 fabiankeil Exp $";
+const char parsers_rcs[] = "$Id: parsers.c,v 1.158 2009/05/19 17:27:05 fabiankeil Exp $";
/*********************************************************************
*
* File : $Source: /cvsroot/ijbswa/current/parsers.c,v $
log_error(LOG_LEVEL_HEADER, "Randomizing: %s", *header);
now = time(NULL);
#ifdef HAVE_GMTIME_R
- timeptr = gmtime_r(&now, &gmt);
+ gmtime_r(&now, &gmt);
#elif FEATURE_PTHREAD
privoxy_mutex_lock(&gmtime_mutex);
- timeptr = gmtime(&now);
+ gmtime(&now);
privoxy_mutex_unlock(&gmtime_mutex);
#else
- timeptr = gmtime(&now);
+ gmtime(&now);
#endif
if (JB_ERR_OK != parse_header_time(header_time, &last_modified))
{