2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

[master] fix win32 build

3595.	[port]		win32: Fix build problems introduced by change #3550.
			[RT #33807]
This commit is contained in:
Evan Hunt
2013-06-13 12:36:39 -07:00
parent 91a45a8ad5
commit 166c4c6c5b
15 changed files with 270 additions and 111 deletions

View File

@@ -4000,8 +4000,8 @@ dns_adb_adjustsrtt(dns_adb_t *adb, dns_adbaddrinfo_t *addr,
new_srtt = (addr->entry->srtt / 10 * factor)
+ (rtt / 10 * (10 - factor));
addr->entry->srtt = new_srtt;
addr->srtt = new_srtt;
addr->entry->srtt = (unsigned int) new_srtt;
addr->srtt = (unsigned int) new_srtt;
if (addr->entry->expires == 0) {
isc_stdtime_get(&now);