Index: source/lib/time.c =================================================================== RCS file: /cvsroot/samba/source/lib/time.c,v retrieving revision 1.42.2.5 diff -u -r1.42.2.5 time.c --- source/lib/time.c 24 Feb 2003 03:09:07 -0000 1.42.2.5 +++ source/lib/time.c 1 Jun 2003 01:19:24 -0000 @@ -308,7 +308,8 @@ time_t l_time_min = TIME_T_MIN; time_t l_time_max = TIME_T_MAX; - if (nt->high == 0) return(0); + if (nt->high == 0 || (nt->high == 0xffffffff && nt->low == 0xffffffff)) + return(0); d = ((double)nt->high)*4.0*(double)(1<<30); d += (nt->low&0xFFF00000);