diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-03-11 21:20:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-03-11 21:20:39 +0000 |
commit | 1396cb052d732254a453dae00c29f3a075a90cb3 (patch) | |
tree | efb99056b923dce90cf03ec7c543eee99abd4344 /sysdeps/unix/bsd | |
parent | 078405a203ba619acca622d0d2c36c40f54d77a5 (diff) | |
download | glibc-1396cb052d732254a453dae00c29f3a075a90cb3.tar.gz glibc-1396cb052d732254a453dae00c29f3a075a90cb3.tar.xz glibc-1396cb052d732254a453dae00c29f3a075a90cb3.zip |
Round milli seconds to nearest. Don't return 1000 in millitm.
Diffstat (limited to 'sysdeps/unix/bsd')
-rw-r--r-- | sysdeps/unix/bsd/ftime.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/unix/bsd/ftime.c b/sysdeps/unix/bsd/ftime.c index 9aa5af100c..187c24c1d3 100644 --- a/sysdeps/unix/bsd/ftime.c +++ b/sysdeps/unix/bsd/ftime.c @@ -30,7 +30,12 @@ ftime (timebuf) return -1; timebuf->time = tv.tv_sec; - timebuf->millitm = (tv.tv_usec + 999) / 1000; + timebuf->millitm = (tv.tv_usec + 500) / 1000; + if (timebuf->millitm == 1000) + { + ++timebuf->time; + timebuf->millitm = 0; + } timebuf->timezone = tz.tz_minuteswest; timebuf->dstflag = tz.tz_dsttime; return 0; |