vquic: make the "disable GSO" use infof, not failf

... because it is not actually a fail.

Closes #16294
This commit is contained in:
Daniel Stenberg 2025-02-11 09:00:08 +01:00
parent 383c030d52
commit c89871fa87
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -163,7 +163,7 @@ static CURLcode do_sendmsg(struct Curl_cfilter *cf,
case EIO:
if(pktlen > gsolen) {
/* GSO failure */
failf(data, "sendmsg() returned %zd (errno %d); disable GSO", sent,
infof(data, "sendmsg() returned %zd (errno %d); disable GSO", sent,
SOCKERRNO);
qctx->no_gso = TRUE;
return send_packet_no_gso(cf, data, qctx, pkt, pktlen, gsolen, psent);