fixed incorrect printf format

This commit is contained in:
Benoît LeBlanc 2013-10-28 13:44:17 -04:00
parent 90e903957a
commit ebb71062b8

View File

@ -99,7 +99,7 @@ SecPkgContext_Bindings* tls_get_channel_bindings(X509* cert)
static void tls_ssl_info_callback(const SSL* ssl, int type, int val)
{
printf("tls_ssl_info_callback: type: %d val: %d\n");
printf("tls_ssl_info_callback: type: %d val: %d\n", type, val);
if (type & SSL_CB_HANDSHAKE_START)
{