Don't shadow the variable p
This commit is contained in:
parent
b44692f126
commit
12ab5d4cfb
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue