pkcs15-tcos.c: In function ‘insert_pin’:

pkcs15-tcos.c:216: warning: declaration of ‘r’ shadows a previous local
pkcs15-tcos.c:194: warning: shadowed declaration is here


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@4868 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
ludovic.rousseau 2010-11-06 17:07:13 +00:00
parent 07ccc3965e
commit c64cb12f2f
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ static int insert_pin(
if(card->type==SC_CARD_TYPE_TCOS_V3){
unsigned char buf[256];
int i, r, rec_no=0;
int i, rec_no=0;
if(pin_info.path.len>=2) pin_info.path.len-=2;
sc_append_file_id(&pin_info.path, 0x5049);
if(sc_select_file(card, &pin_info.path, NULL)!=SC_SUCCESS){