From 985d458571873910edd635681a925a131bf6b61f Mon Sep 17 00:00:00 2001 From: Valentine Krasnobaeva Date: Wed, 10 Apr 2024 15:18:25 +0200 Subject: [PATCH] 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. --- src/proto_quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_quic.c b/src/proto_quic.c index 899cffebf..d7559e737 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; }