There is a hard-coded limit in the year parsing code that prevents one from querying data for 2005. Any data that is collected is correct, but the tools prevent you from querying the data. This patch will fix that bug. Either download the new release (silktools-0.7 of 2005/01/03), or apply the patch to the previous release (silktools-0.6 of 2004/11/30) and recompile the suite. --- src/util/utils/times.c.orig 2004-11-30 11:27:52.000000000 -0500 +++ src/util/utils/times.c 2005-01-03 10:10:51.000000000 -0500 @@ -81,7 +81,7 @@ /* MAX_YEARS max number of years we use for fglobbing */ -#define MAX_YEARS 5 +#define MAX_YEARS 20 char *timestamp(uint32_t t) {