From: Frédéric Lécaille Date: Mon, 24 Apr 2023 16:20:44 +0000 (+0200) Subject: CLEANUP: quic: Typo fix for quic_connection_id pool X-Git-Tag: v2.8-dev11~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a94612522da8a494e9238a7b4afd68081044fe6c;p=thirdparty%2Fhaproxy.git CLEANUP: quic: Typo fix for quic_connection_id pool Remove a "n" extra letter. Should be backported to 2.7. --- diff --git a/doc/management.txt b/doc/management.txt index 978b0482f4..4a5e033614 100644 --- a/doc/management.txt +++ b/doc/management.txt @@ -2934,7 +2934,7 @@ show pools [byname|bysize|byusage] [match ] [] - Pool quic_crypto (1048 bytes) : 6685 allocated (7005880 bytes), ... - Pool quic_conn (4056 bytes) : 1337 allocated (5422872 bytes), ... - Pool quic_rxbuf (262168 bytes) : 8 allocated (2097344 bytes), ... - - Pool quic_connne (184 bytes) : 9359 allocated (1722056 bytes), ... + - Pool quic_conne (184 bytes) : 9359 allocated (1722056 bytes), ... - Pool quic_frame (184 bytes) : 7938 allocated (1460592 bytes), ... - Pool quic_tx_pac (152 bytes) : 6454 allocated (981008 bytes), ... - Pool quic_tls_ke (56 bytes) : 12033 allocated (673848 bytes), ... diff --git a/src/quic_conn.c b/src/quic_conn.c index 849beb20bd..096f5e3887 100644 --- a/src/quic_conn.c +++ b/src/quic_conn.c @@ -217,7 +217,7 @@ DECLARE_STATIC_POOL(pool_head_quic_conn_ctx, "quic_conn_ctx", sizeof(struct ssl_sock_ctx)); DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn)); DECLARE_POOL(pool_head_quic_connection_id, - "quic_connnection_id", sizeof(struct quic_connection_id)); + "quic_connection_id", sizeof(struct quic_connection_id)); DECLARE_POOL(pool_head_quic_dgram, "quic_dgram", sizeof(struct quic_dgram)); DECLARE_POOL(pool_head_quic_rx_packet, "quic_rx_packet", sizeof(struct quic_rx_packet)); DECLARE_POOL(pool_head_quic_tx_packet, "quic_tx_packet", sizeof(struct quic_tx_packet));