list the shutdown time w/ the clock fudge factor included

This commit is contained in:
jrandom
2004-10-06 16:47:36 +00:00
committed by zzz
parent 4191ad1cbf
commit 39d4e5ea81

View File

@ -666,7 +666,7 @@ public class Router {
if (exp < 0) if (exp < 0)
return -1; return -1;
else else
return exp - _context.clock().now(); return exp + 2*CLOCK_FUDGE_FACTOR - _context.clock().now();
} }
/** /**