mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-06-01 05:10:18 +00:00
Change formating of CID debug output in ssl_client2/ssl_server2
This commit is contained in:
parent
2de89fae8f
commit
0c8281aae5
|
@ -1787,7 +1787,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" );
|
||||||
|
|
|
@ -2882,7 +2882,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 a new issue