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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user