>>I think the problem is in de date.c function date_convert_universal: >> line 81: date += monthstart[t->month] * DAY; >>Shouldn't it be >> line 81: date += monthstart[t->month-1] * DAY; >>? >>Or am I doing something wrong? >>I need exacts timestamps because we have to do accounting fo the sms traffic.
>sounds reasonable assumption. the unix represenation of timestamps start with month 0-11. >Andreas Fink So who's the person responsible for date.c? Or should I send a patch? Angel Fradejas.