From cb7da352fddf956dc1a8d936632d29215c60627e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Fri, 21 Nov 2014 09:16:00 +0100 Subject: [PATCH] Fix typo in #ifdef Since length is checked afterwards anyway, no security risk here --- include/polarssl/ssl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/polarssl/ssl.h b/include/polarssl/ssl.h index a4cd70e5c..f4f8f01c9 100644 --- a/include/polarssl/ssl.h +++ b/include/polarssl/ssl.h @@ -444,7 +444,7 @@ union _ssl_premaster_secret #if defined(POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED) unsigned char _pms_rsa_psk[52 + POLARSSL_PSK_MAX_LEN]; /* RFC 4279 4 */ #endif -#if defined(POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED) +#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED) unsigned char _pms_ecdhe_psk[4 + POLARSSL_ECP_MAX_BYTES + POLARSSL_PSK_MAX_LEN]; /* RFC 5489 2 */ #endif