mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-25 20:25:53 +01:00
Typo in POLARSSL_PLATFORM_STD_FPRINTF in platform.c
This commit is contained in:
parent
088c5c5f18
commit
10a9dd35ea
@ -8,6 +8,7 @@ Changes
|
|||||||
Bugfix
|
Bugfix
|
||||||
* Only iterate over actual certificates in ssl_write_certificate_request()
|
* Only iterate over actual certificates in ssl_write_certificate_request()
|
||||||
(found by Matthew Page)
|
(found by Matthew Page)
|
||||||
|
* Typo in platform.c (found by Daniel Phillips)
|
||||||
|
|
||||||
= PolarSSL 1.3.6 released on 2014-04-11
|
= PolarSSL 1.3.6 released on 2014-04-11
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ static int platform_fprintf_uninit( FILE *stream, const char *format, ... )
|
|||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
#define POLARSSL_PLATFORM_STD_fPRINTF platform_fprintf_uninit
|
#define POLARSSL_PLATFORM_STD_FPRINTF platform_fprintf_uninit
|
||||||
#endif /* !POLARSSL_PLATFORM_STD_FPRINTF */
|
#endif /* !POLARSSL_PLATFORM_STD_FPRINTF */
|
||||||
|
|
||||||
int (*polarssl_fprintf)( FILE *, const char *, ... ) =
|
int (*polarssl_fprintf)( FILE *, const char *, ... ) =
|
||||||
|
Loading…
Reference in New Issue
Block a user