- Fix #529: Fix: log_assert does nothing if UNBOUND_DEBUG is
undefined.
+20 August 2021: Wouter
+ - Fix #529: Fix: log_assert does nothing if UNBOUND_DEBUG is
+ undefined.
+
17 August 2021: Wouter
- Fix that --with-ssl can use "/usr/include/openssl11" to pass the
location of a different openssl version.
d += r;
}
if (*len >= 65536*2) {
- log_err("tube msg length is too big", *len);
- (void)fd_set_nonblock(fd);
- return 0;
+ log_err("tube msg length %u is too big", (unsigned)*len);
+ (void)fd_set_nonblock(fd);
+ return 0;
}
*buf = (uint8_t*)malloc(*len);
if(!*buf) {