mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-04 00:11:05 +00:00
Correct comments
This commit is contained in:
parent
56fa40f4f5
commit
dcbb0246f9
|
@ -149,7 +149,7 @@ int main( int argc, char *argv[] )
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Read the secret key and clean the command line.
|
* Read the secret key from file or command line
|
||||||
*/
|
*/
|
||||||
if( ( fkey = fopen( argv[4], "rb" ) ) != NULL )
|
if( ( fkey = fopen( argv[4], "rb" ) ) != NULL )
|
||||||
{
|
{
|
||||||
|
|
|
@ -188,7 +188,7 @@ int main( int argc, char *argv[] )
|
||||||
md_init_ctx( &md_ctx, md_info);
|
md_init_ctx( &md_ctx, md_info);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Read the secret key and clean the command line.
|
* Read the secret key from file or command line
|
||||||
*/
|
*/
|
||||||
if( ( fkey = fopen( argv[6], "rb" ) ) != NULL )
|
if( ( fkey = fopen( argv[6], "rb" ) ) != NULL )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue