Skip to content

Commit

Permalink
vquic: make the "disable GSO" use infof, not failf
Browse files Browse the repository at this point in the history
... because it is not actually a fail.

Closes curl#16294
  • Loading branch information
bagder committed Feb 11, 2025
1 parent 383c030 commit c89871f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vquic/vquic.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c89871f

Please sign in to comment.