From: Alan T. DeKok Date: Mon, 3 Jul 2023 19:18:41 +0000 (-0400) Subject: make all of the things unconst X-Git-Tag: release_3_2_4~213 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54e7b45a9c701ab684199de41898d92fdd625f8c;p=thirdparty%2Ffreeradius-server.git make all of the things unconst --- diff --git a/src/modules/rlm_eap/types/rlm_eap_teap/eap_teap.c b/src/modules/rlm_eap/types/rlm_eap_teap/eap_teap.c index 619ccc3fa79..2dd4063791d 100644 --- a/src/modules/rlm_eap/types/rlm_eap_teap/eap_teap.c +++ b/src/modules/rlm_eap/types/rlm_eap_teap/eap_teap.c @@ -61,7 +61,7 @@ do {\ _cbb->eap_type = PW_EAP_TEAP;\ } while (0) -static const struct teap_imck_t imck_zeros = { 0 }; +static struct teap_imck_t imck_zeros = { 0 }; /** * RFC 7170 EAP-TEAP Authentication Phase 1: Key Derivations @@ -1149,7 +1149,7 @@ static PW_CODE eap_teap_crypto_binding(REQUEST *request, UNUSED eap_handler_t *e uint8_t mac[EVP_MAX_MD_SIZE]; unsigned int maclen = sizeof(mac); unsigned int flags; - struct teap_imck_t const *imck = NULL; + struct teap_imck_t *imck = NULL; olen = tls_session->outer_tlvs_octets ? talloc_array_length(tls_session->outer_tlvs_octets) : 0; /* FIXME: include client outer TLVs */