Typo in POLARSSL_PLATFORM_STD_FPRINTF in platform.c

This commit is contained in:
Paul Bakker 2014-04-25 11:18:34 +02:00
parent 088c5c5f18
commit 10a9dd35ea
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ Changes
Bugfix
* Only iterate over actual certificates in ssl_write_certificate_request()
(found by Matthew Page)
* Typo in platform.c (found by Daniel Phillips)
= PolarSSL 1.3.6 released on 2014-04-11

View File

@ -96,7 +96,7 @@ static int platform_fprintf_uninit( FILE *stream, const char *format, ... )
return( 0 );
}
#define POLARSSL_PLATFORM_STD_fPRINTF platform_fprintf_uninit
#define POLARSSL_PLATFORM_STD_FPRINTF platform_fprintf_uninit
#endif /* !POLARSSL_PLATFORM_STD_FPRINTF */
int (*polarssl_fprintf)( FILE *, const char *, ... ) =