Adding requested changes

This commit is contained in:
Kevin Luty 2018-03-21 10:01:38 -05:00
parent da44de60b1
commit 1e7059fedd
No known key found for this signature in database
GPG key ID: 62A52691A515C300

View file

@ -100,7 +100,7 @@ int main( int argc, char *argv[] )
if( ( ret = mbedtls_pk_parse_keyfile( &pk, argv[1], "" ) ) != 0 )
{
mbedtls_printf( " failed\n ! Could not open '%s'\n", argv[1] );
mbedtls_printf( " failed\n ! Could not parse '%s'\n", argv[1] );
goto exit;
}
@ -133,6 +133,7 @@ int main( int argc, char *argv[] )
if( ( f = fopen( filename, "wb+" ) ) == NULL )
{
ret = 1;
mbedtls_printf( " failed\n ! Could not create %s\n\n", filename );
goto exit;
}