Prettier printing of the lists for longer ciphersuite names

This commit is contained in:
Paul Bakker 2013-04-19 09:10:20 +02:00
parent e07f41d4be
commit bcbe2d8d81
2 changed files with 2 additions and 2 deletions

View File

@ -238,7 +238,7 @@ int main( int argc, char *argv[] )
list = ssl_list_ciphersuites();
while( *list )
{
printf(" %-40s", ssl_get_ciphersuite_name( *list ) );
printf(" %-42s", ssl_get_ciphersuite_name( *list ) );
list++;
if( !*list )
break;

View File

@ -210,7 +210,7 @@ int main( int argc, char *argv[] )
list = ssl_list_ciphersuites();
while( *list )
{
printf(" %-40s", ssl_get_ciphersuite_name( *list ) );
printf(" %-42s", ssl_get_ciphersuite_name( *list ) );
list++;
if( !*list )
break;