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.
This commit is contained in:
Valentine Krasnobaeva 2024-04-10 15:18:25 +02:00 committed by Willy Tarreau
parent 7041c078d6
commit 985d458571

View File

@ -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;
}