Change formating of CID debug output in ssl_client2/ssl_server2

This commit is contained in:
Hanno Becker 2019-04-26 17:19:15 +01:00
parent b1f89cd602
commit dec2552a92
2 changed files with 2 additions and 2 deletions

View File

@ -2180,7 +2180,7 @@ int main( int argc, char *argv[] )
(unsigned) peer_cid_len );
while( idx < peer_cid_len )
{
mbedtls_printf( "%#02x ", peer_cid[ idx ] );
mbedtls_printf( "%02x ", peer_cid[ idx ] );
idx++;
}
mbedtls_printf( "\n" );

View File

@ -3330,7 +3330,7 @@ handshake:
(unsigned) peer_cid_len );
while( idx < peer_cid_len )
{
mbedtls_printf( "%#02x ", peer_cid[ idx ] );
mbedtls_printf( "%02x ", peer_cid[ idx ] );
idx++;
}
mbedtls_printf( "\n" );