summaryrefslogtreecommitdiff
path: root/src/tvarith.h
diff options
context:
space:
mode:
authorian <ian>1999-11-07 19:02:20 +0000
committerian <ian>1999-11-07 19:02:20 +0000
commit41559f53541ae03b5647c41c42883dc4b78634d9 (patch)
tree69f079416ef58776f797e499e69ddbd76f3aab22 /src/tvarith.h
parent9d6ede82a4f21e447cc75a6d8c9431e80545da8a (diff)
New properly-asynchronous adnsresfilter seems to work.
Diffstat (limited to 'src/tvarith.h')
-rw-r--r--src/tvarith.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tvarith.h b/src/tvarith.h
index 4a9ba53..202da1f 100644
--- a/src/tvarith.h
+++ b/src/tvarith.h
@@ -32,9 +32,9 @@ static inline void timevaladd(struct timeval *tv_io, long ms) {
struct timeval tmp;
assert(ms>=0);
tmp= *tv_io;
- tmp.tv_usec += (ms%1000)*1000000;
+ tmp.tv_usec += (ms%1000)*1000;
tmp.tv_sec += ms/1000;
- if (tmp.tv_usec >= 1000000) { tmp.tv_sec++; tmp.tv_usec -= 1000; }
+ if (tmp.tv_usec >= 1000000) { tmp.tv_sec++; tmp.tv_usec -= 1000000; }
*tv_io= tmp;
}