]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
vquic: unblame netbsd
authorStefan Eissing <stefan@eissing.org>
Tue, 22 Apr 2025 12:23:31 +0000 (14:23 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 22 Apr 2025 13:54:07 +0000 (15:54 +0200)
it was innocent.

Follow-up to 4872dafd8075fab781b7a3ac

Closes #17133

lib/vquic/vquic.c

index 46d8c5ad76ce48bae6b336cbd97d3d0e5bb51ce5..7c112597172403293be14e157df4ab2dcc3fe6e1 100644 (file)
@@ -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);