From: Daniel Stenberg Date: Tue, 11 Feb 2025 08:00:08 +0000 (+0100) Subject: vquic: make the "disable GSO" use infof, not failf X-Git-Tag: curl-8_12_1~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c89871fa876a8e408d4dc5fc58afb3e79cc54155;p=thirdparty%2Fcurl.git vquic: make the "disable GSO" use infof, not failf ... because it is not actually a fail. Closes #16294 --- diff --git a/lib/vquic/vquic.c b/lib/vquic/vquic.c index 9ac3518612..69de5c1a8f 100644 --- a/lib/vquic/vquic.c +++ b/lib/vquic/vquic.c @@ -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);