From: W.C.A. Wijngaards Date: Fri, 20 Aug 2021 12:32:13 +0000 (+0200) Subject: Changelog note for #529 and nicer layout. X-Git-Tag: release-1.14.0rc1~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54b7554b5a6a9c482389c535e464c41a8ccd6b9d;p=thirdparty%2Funbound.git Changelog note for #529 and nicer layout. - Fix #529: Fix: log_assert does nothing if UNBOUND_DEBUG is undefined. --- diff --git a/doc/Changelog b/doc/Changelog index c02c5d319..7dc5820fc 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +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. diff --git a/util/tube.c b/util/tube.c index 8ff474b87..40556e720 100644 --- a/util/tube.c +++ b/util/tube.c @@ -364,9 +364,9 @@ int tube_read_msg(struct tube* tube, uint8_t** buf, uint32_t* len, 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) {