mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
1000 nanoseconds in a microsecond, not 10000
This commit is contained in:
@@ -223,7 +223,7 @@ isc_time_microdiff(isc_time_t *t1, isc_time_t *t2) {
|
||||
/*
|
||||
* Convert to microseconds.
|
||||
*/
|
||||
i3 = (i1 - i2) / 10000;
|
||||
i3 = (i1 - i2) / 1000;
|
||||
|
||||
return (i3);
|
||||
}
|
||||
|
Reference in New Issue
Block a user