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 2de89fae8f
commit 0c8281aae5
2 changed files with 2 additions and 2 deletions

View file

@ -1787,7 +1787,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

@ -2882,7 +2882,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" );