Merge pull request #626 from aviallon/fix-typo-pcsc
Fix typo in variable name in pcsc.c
This commit is contained in:
commit
7ebf9b92d6
1 changed files with 1 additions and 1 deletions
|
@ -352,7 +352,7 @@ static int pcsc_props_to_target(struct nfc_device *pnd, uint8_t it, const uint8_
|
||||||
uint8_t atqa[2];
|
uint8_t atqa[2];
|
||||||
pcsc_get_atqa(pnd, atqa, sizeof(atqa));
|
pcsc_get_atqa(pnd, atqa, sizeof(atqa));
|
||||||
//ATQA Coding of NXP Contactless Card ICs
|
//ATQA Coding of NXP Contactless Card ICs
|
||||||
if(ataq[0] = 0x00 || atqa[0] == 0x03)
|
if(atqa[0] = 0x00 || atqa[0] == 0x03)
|
||||||
{
|
{
|
||||||
memcpy(pnt->nti.nai.abtAtqa,atqa,2);
|
memcpy(pnt->nti.nai.abtAtqa,atqa,2);
|
||||||
}else {
|
}else {
|
||||||
|
|
Loading…
Reference in a new issue