mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 05:25:39 +00:00
Fix bad name choice
This commit is contained in:
parent
a7f8033fa4
commit
160e384360
|
@ -348,7 +348,7 @@
|
|||
#endif
|
||||
|
||||
/* Dummy type used only for its size */
|
||||
union mbedtls_ssl_premaster_secret_
|
||||
union mbedtls_ssl_premaster_secret
|
||||
{
|
||||
#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED)
|
||||
unsigned char _pms_rsa[48]; /* RFC 5246 8.1.1 */
|
||||
|
@ -378,7 +378,7 @@ union mbedtls_ssl_premaster_secret_
|
|||
#endif
|
||||
};
|
||||
|
||||
#define MBEDTLS_PREMASTER_SIZE sizeof( union mbedtls_ssl_premaster_secret_ )
|
||||
#define MBEDTLS_PREMASTER_SIZE sizeof( union mbedtls_ssl_premaster_secret )
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
Loading…
Reference in a new issue