Fix iteration counter

This commit is contained in:
Paul Bakker 2014-04-17 12:39:05 +02:00
parent 784b04ff9a
commit 0e4f9115dc

View file

@ -243,7 +243,7 @@ static void debug_print_pk( const ssl_context *ssl, int level,
return;
}
for( i = 0; i < sizeof( items ); i++ )
for( i = 0; i < POLARSSL_PK_DEBUG_MAX_ITEMS; i++ )
{
if( items[i].type == POLARSSL_PK_DEBUG_NONE )
return;