# # patch "cvs_client.cc" # from [745ee23e0708253e0bf2d8dacd231ab06d88f305] # to [d0f210657b7cd9642d6779410a2447c2e45aa091] # --- cvs_client.cc +++ cvs_client.cc @@ -702,8 +702,9 @@ tm.tm_hour=atoi(parts[3].substr(0,2).c_str()); tm.tm_min=atoi(parts[3].substr(3,2).c_str()); tm.tm_sec=atoi(parts[3].substr(6,2).c_str()); - tm.tm_isdst=-1; - return mktime(&tm); + tm.tm_isdst=0; + // at least for me it was UTC ... + return timezone2time_t(tm,0); } std::string cvs_client::time_t2rfc822(time_t t)