Remove unneeded namesapcing in header files

Remove the `mbedtls` namesapcing in the `#include` in header files
Resolves issue #857
This commit is contained in:
Ron Eldor 2017-05-14 16:17:33 +03:00
parent b9197bffd0
commit 2c8a7ec0dd
7 changed files with 12 additions and 6 deletions

View file

@ -1,5 +1,11 @@
mbed TLS ChangeLog (Sorted per branch, date) mbed TLS ChangeLog (Sorted per branch, date)
= mbed TLS x.x.x branch released xxxx-xx-xx
Bugfix
* Fix namespacing in header files. REmove the `mbedtls` namespacing in
the `#include` in the header files. Resolves #857
= mbed TLS 2.1.13 branch released 2018-06-18 = mbed TLS 2.1.13 branch released 2018-06-18
Bugfix Bugfix

View file

@ -80,6 +80,6 @@
*/ */
#define MBEDTLS_SSL_MAX_CONTENT_LEN 512 #define MBEDTLS_SSL_MAX_CONTENT_LEN 512
#include "mbedtls/check_config.h" #include "check_config.h"
#endif /* MBEDTLS_CONFIG_H */ #endif /* MBEDTLS_CONFIG_H */

View file

@ -70,6 +70,6 @@
/* For testing with compat.sh */ /* For testing with compat.sh */
#define MBEDTLS_FS_IO #define MBEDTLS_FS_IO
#include "mbedtls/check_config.h" #include "check_config.h"
#endif /* MBEDTLS_CONFIG_H */ #endif /* MBEDTLS_CONFIG_H */

View file

@ -109,6 +109,6 @@
*/ */
#define MBEDTLS_SSL_MAX_CONTENT_LEN 1024 #define MBEDTLS_SSL_MAX_CONTENT_LEN 1024
#include "mbedtls/check_config.h" #include "check_config.h"
#endif /* MBEDTLS_CONFIG_H */ #endif /* MBEDTLS_CONFIG_H */

View file

@ -2528,7 +2528,7 @@
/* \} name SECTION: Module configuration options */ /* \} name SECTION: Module configuration options */
#if defined(TARGET_LIKE_MBED) #if defined(TARGET_LIKE_MBED)
#include "mbedtls/target_config.h" #include "target_config.h"
#endif #endif
/* /*

View file

@ -26,7 +26,7 @@
#include "aes.h" #include "aes.h"
#if defined(MBEDTLS_THREADING_C) #if defined(MBEDTLS_THREADING_C)
#include "mbedtls/threading.h" #include "threading.h"
#endif #endif
#define MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED -0x0034 /**< The entropy source failed. */ #define MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED -0x0034 /**< The entropy source failed. */

View file

@ -26,7 +26,7 @@
#include "md.h" #include "md.h"
#if defined(MBEDTLS_THREADING_C) #if defined(MBEDTLS_THREADING_C)
#include "mbedtls/threading.h" #include "threading.h"
#endif #endif
/* /*