From: Stefan Eissing Date: Tue, 22 Apr 2025 12:23:31 +0000 (+0200) Subject: vquic: unblame netbsd X-Git-Tag: curl-8_14_0~247 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebe6612505256dc3323c656a542cd643ec1012ab;p=thirdparty%2Fcurl.git vquic: unblame netbsd it was innocent. Follow-up to 4872dafd8075fab781b7a3ac Closes #17133 --- diff --git a/lib/vquic/vquic.c b/lib/vquic/vquic.c index 46d8c5ad76..7c11259717 100644 --- a/lib/vquic/vquic.c +++ b/lib/vquic/vquic.c @@ -483,9 +483,8 @@ static CURLcode recvmsg_packets(struct Curl_cfilter *cf, DEBUGASSERT(max_pkts > 0); for(pkts = 0, total_nread = 0; pkts < max_pkts;) { - /* fully initialise this on each call to `recvmsg()`. There are - * operating systems out there that mess with `msg_iov.iov_len` - * in the call (*staring at NetBSD*). */ + /* fully initialise this on each call to `recvmsg()`. There seem to + * operating systems out there that mess with `msg_iov.iov_len`. */ memset(&msg, 0, sizeof(msg)); msg_iov.iov_base = buf; msg_iov.iov_len = (int)sizeof(buf);