Don't shadow the variable p

This commit is contained in:
Gilles Peskine 2018-04-24 12:32:04 +02:00
parent b44692f126
commit 12ab5d4cfb

View file

@ -2287,10 +2287,10 @@ int main( int argc, char *argv[] )
{
mbedtls_ssl_async_sign_t *sign = NULL;
mbedtls_ssl_async_decrypt_t *decrypt = NULL;
const char *p;
for( p = opt.async_operations; *p; p++ )
const char *r;
for( r = opt.async_operations; *r; r++ )
{
switch( *p )
switch( *r )
{
case 'd':
decrypt = ssl_async_decrypt;