From: Alan T. DeKok Date: Wed, 9 Sep 2015 13:21:55 +0000 (-0400) Subject: typo X-Git-Tag: release_3_0_10~152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3322ecf3de72d2a33239e3db7c606045e6d581e;p=thirdparty%2Ffreeradius-server.git typo --- diff --git a/src/modules/rlm_eap/libeap/mppe_keys.c b/src/modules/rlm_eap/libeap/mppe_keys.c index d8e595159de..94f08b05cfd 100644 --- a/src/modules/rlm_eap/libeap/mppe_keys.c +++ b/src/modules/rlm_eap/libeap/mppe_keys.c @@ -174,8 +174,8 @@ void eapttls_gen_challenge(SSL *s, uint8_t *buffer, size_t size) } #if OPENSSL_VERSION_NUMBER >= 0x10001000L - SSL_export_keying_material(s, buffer, size, EAPTLS_PRF_CHALLENGE, - sizeof(EAPTLS_PRF_CHALLENGE) - 1, NULL, 0, 0); + SSL_export_keying_material(s, buffer, size, FR_TLS_PRF_CHALLENGE, + sizeof(FR_TLS_PRF_CHALLENGE) - 1, NULL, 0, 0); #else memcpy(p, FR_TLS_PRF_CHALLENGE, sizeof(FR_TLS_PRF_CHALLENGE)-1); p += sizeof(FR_TLS_PRF_CHALLENGE)-1;