Change formating of CID debug output in ssl_client2/ssl_server2
This commit is contained in:
parent
b1f89cd602
commit
dec2552a92
2 changed files with 2 additions and 2 deletions
|
@ -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" );
|
||||
|
|
|
@ -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" );
|
||||
|
|
Loading…
Reference in a new issue