The git archives have some old-date-format commits with timezones
that the converter didn't recognize. Also, make it be quiet about
already-converted dates.
};
/* We only ever did two timezones in the bad old format .. */
const char *timezones[] = {
- "PDT", "PST", NULL
+ "PDT", "PST", "CEST", NULL
};
const char **fmt = formats;
if (isdigit(*date)) {
int datelen = next - date;
memcpy(dst, date, datelen);
- printf("new format date '%.*s'?\n", datelen-1, date);
return len + datelen;
}