Browse Source

Normalize tv so that tv_usec is positive. The kernel also normalizes,

but this might increase portability since some other systems do not
grok negative tv_usec well. ok henning@
OPENBSD_4_2
otto 17 years ago
parent
commit
66f330d94f
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/usr.sbin/ntpd/util.c

+ 5
- 1
src/usr.sbin/ntpd/util.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: util.c,v 1.12 2006/10/27 12:22:41 henning Exp $ */
/* $OpenBSD: util.c,v 1.13 2007/03/27 18:22:02 otto Exp $ */
/*
* Copyright (c) 2004 Alexander Guy <alexander.guy@andern.org>
@ -64,6 +64,10 @@ d_to_tv(double d, struct timeval *tv)
{
tv->tv_sec = (long)d;
tv->tv_usec = (d - tv->tv_sec) * 1000000;
while (tv->tv_usec < 0) {
tv->tv_usec += 1000000;
tv->tv_sec -= 1;
}
}
double


Loading…
Cancel
Save