From: Valentine Krasnobaeva Date: Wed, 10 Apr 2024 13:18:25 +0000 (+0200) Subject: MINOR: proto_quic: add proto name in alert X-Git-Tag: v3.0-dev8~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=985d458571873910edd635681a925a131bf6b61f;p=thirdparty%2Fhaproxy.git MINOR: proto_quic: add proto name in alert In quic_alloc_dghdlrs() add proto name in the last alert. This helps to identify potential problem immediately and makes log messages more uniform. --- diff --git a/src/proto_quic.c b/src/proto_quic.c index 899cffebf2..d7559e7370 100644 --- a/src/proto_quic.c +++ b/src/proto_quic.c @@ -762,7 +762,7 @@ static int quic_alloc_dghdlrs(void) quic_cid_trees = calloc(QUIC_CID_TREES_CNT, sizeof(*quic_cid_trees)); if (!quic_cid_trees) { - ha_alert("Failed to allocate global CIDs trees.\n"); + ha_alert("Failed to allocate global quic CIDs trees.\n"); return 0; }