vquic: make the "disable GSO" use infof, not failf
... because it is not actually a fail. Closes #16294
This commit is contained in:
parent
383c030d52
commit
c89871fa87
@ -163,7 +163,7 @@ static CURLcode do_sendmsg(struct Curl_cfilter *cf,
|
|||||||
case EIO:
|
case EIO:
|
||||||
if(pktlen > gsolen) {
|
if(pktlen > gsolen) {
|
||||||
/* GSO failure */
|
/* GSO failure */
|
||||||
failf(data, "sendmsg() returned %zd (errno %d); disable GSO", sent,
|
infof(data, "sendmsg() returned %zd (errno %d); disable GSO", sent,
|
||||||
SOCKERRNO);
|
SOCKERRNO);
|
||||||
qctx->no_gso = TRUE;
|
qctx->no_gso = TRUE;
|
||||||
return send_packet_no_gso(cf, data, qctx, pkt, pktlen, gsolen, psent);
|
return send_packet_no_gso(cf, data, qctx, pkt, pktlen, gsolen, psent);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user