Drop POLARSSL_ERROR_STRERROR_BC

This commit is contained in:
Manuel Pégourié-Gonnard 2015-03-11 10:59:38 +00:00
parent fc51f40a1a
commit f9c1387b9d
7 changed files with 1 additions and 55 deletions

View file

@ -644,20 +644,6 @@
*/
#define POLARSSL_PK_PARSE_EC_EXTENDED
/**
* \def POLARSSL_ERROR_STRERROR_BC
*
* Make available the backward compatible error_strerror() next to the
* current polarssl_strerror().
*
* For new code, it is recommended to use polarssl_strerror() instead and
* disable this.
*
* Disable if you run into name conflicts and want to really remove the
* error_strerror()
*/
#define POLARSSL_ERROR_STRERROR_BC
/**
* \def POLARSSL_ERROR_STRERROR_DUMMY
*

View file

@ -109,10 +109,6 @@ extern "C" {
*/
void polarssl_strerror( int errnum, char *buffer, size_t buflen );
#if defined(POLARSSL_ERROR_STRERROR_BC)
void error_strerror( int errnum, char *buffer, size_t buflen );
#endif
#ifdef __cplusplus
}
#endif