commit | b1cb95858112880adcaa3aa0e2e6809a537a71c8 | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Thu Jun 16 17:53:46 2022 +0200 |
committer | Frédéric Lécaille <flecaille@haproxy.com> | Mon Jun 20 14:50:19 2022 +0200 |
tree | 095b2e823569060464dbd8f2f2788bb6e2fb5c27 | |
parent | 177aed56dcb38e03f8d1ab5cb9e5a3fd2254c22f [diff] |
BUILD: quic: Wrong HKDF label constant variable initializations Non constant expressions were used to initialize constant variables leading to such compilation errors: src/xprt_quic.c:66:3: error: initializer element is not a constant expression .key_label_len = strlen(QUIC_HKDF_KEY_LABEL_V1), Reproduced with CC=gcc-4.9 compilation option. Fix using macros for each HKDF label.