From: Amaury Denoyelle Date: Fri, 30 Sep 2022 15:34:54 +0000 (+0200) Subject: CLEANUP: quic: remove unused function prototype X-Git-Tag: v2.7-dev8~75 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ac9bf016bfcb5608b4d29d029f20a45709ac0a2d;p=thirdparty%2Fhaproxy.git CLEANUP: quic: remove unused function prototype Removed hexdump unusued prototype from quic_tls.c. This should be backported up to 2.6. --- diff --git a/src/quic_tls.c b/src/quic_tls.c index 069aa41fdb..cda1e34779 100644 --- a/src/quic_tls.c +++ b/src/quic_tls.c @@ -16,9 +16,6 @@ DECLARE_POOL(pool_head_quic_tls_secret, "quic_tls_secret", QUIC_TLS_SECRET_LEN); DECLARE_POOL(pool_head_quic_tls_iv, "quic_tls_iv", QUIC_TLS_IV_LEN); DECLARE_POOL(pool_head_quic_tls_key, "quic_tls_key", QUIC_TLS_KEY_LEN); -__attribute__((format (printf, 3, 4))) -void hexdump(const void *buf, size_t buflen, const char *title_fmt, ...); - /* Initial salt depending on QUIC version to derive client/server initial secrets. * This one is for draft-29 QUIC version. */