diff --git a/source/lib/time.c b/source/lib/time.c index e5fd929d0f3..17990b92699 100644 --- a/source/lib/time.c +++ b/source/lib/time.c @@ -1211,8 +1211,12 @@ struct timespec nt_time_to_unix_timespec(NTTIME *nt) d = (int64)*nt; /* d is now in 100ns units, since jan 1st 1601". Save off the ns fraction. */ - - ret.tv_nsec = (long) ((d % 100) * 100); + + /* + * Take the last seven decimal digits and multiply by 100. + * to convert from 100ns units to 1ns units. + */ + ret.tv_nsec = (long) ((d % (1000 * 1000 * 10)) * 100); /* Convert to seconds */ d /= 1000*1000*10;