mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-05-01 14:16:28 +00:00
Prettier printing of the lists for longer ciphersuite names
This commit is contained in:
parent
e07f41d4be
commit
bcbe2d8d81
|
@ -238,7 +238,7 @@ int main( int argc, char *argv[] )
|
||||||
list = ssl_list_ciphersuites();
|
list = ssl_list_ciphersuites();
|
||||||
while( *list )
|
while( *list )
|
||||||
{
|
{
|
||||||
printf(" %-40s", ssl_get_ciphersuite_name( *list ) );
|
printf(" %-42s", ssl_get_ciphersuite_name( *list ) );
|
||||||
list++;
|
list++;
|
||||||
if( !*list )
|
if( !*list )
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -210,7 +210,7 @@ int main( int argc, char *argv[] )
|
||||||
list = ssl_list_ciphersuites();
|
list = ssl_list_ciphersuites();
|
||||||
while( *list )
|
while( *list )
|
||||||
{
|
{
|
||||||
printf(" %-40s", ssl_get_ciphersuite_name( *list ) );
|
printf(" %-42s", ssl_get_ciphersuite_name( *list ) );
|
||||||
list++;
|
list++;
|
||||||
if( !*list )
|
if( !*list )
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue