From c4d6ca41d919cfec11b0f05e8b2f3bffbfadefcc Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 20 Jun 2008 13:23:31 -0700 Subject: Fix bug #5531 - fix conversion of ns units when converting from nttime to timespec. Fix from hkurma@datadomain.com. Jeremy. (This used to be commit 8c87a4319cc83f55fb105cae81a8efbc3fb5b98b) --- source3/lib/time.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source3/lib/time.c b/source3/lib/time.c index e5fd929d0f..17990b9269 100644 --- a/source3/lib/time.c +++ b/source3/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; -- cgit