mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 01:55:46 +01:00
Change formating of CID debug output in ssl_client2/ssl_server2
This commit is contained in:
parent
b1f89cd602
commit
dec2552a92
@ -2180,7 +2180,7 @@ int main( int argc, char *argv[] )
|
|||||||
(unsigned) peer_cid_len );
|
(unsigned) peer_cid_len );
|
||||||
while( idx < peer_cid_len )
|
while( idx < peer_cid_len )
|
||||||
{
|
{
|
||||||
mbedtls_printf( "%#02x ", peer_cid[ idx ] );
|
mbedtls_printf( "%02x ", peer_cid[ idx ] );
|
||||||
idx++;
|
idx++;
|
||||||
}
|
}
|
||||||
mbedtls_printf( "\n" );
|
mbedtls_printf( "\n" );
|
||||||
|
@ -3330,7 +3330,7 @@ handshake:
|
|||||||
(unsigned) peer_cid_len );
|
(unsigned) peer_cid_len );
|
||||||
while( idx < peer_cid_len )
|
while( idx < peer_cid_len )
|
||||||
{
|
{
|
||||||
mbedtls_printf( "%#02x ", peer_cid[ idx ] );
|
mbedtls_printf( "%02x ", peer_cid[ idx ] );
|
||||||
idx++;
|
idx++;
|
||||||
}
|
}
|
||||||
mbedtls_printf( "\n" );
|
mbedtls_printf( "\n" );
|
||||||
|
Loading…
Reference in New Issue
Block a user