Merge pull request #639 from rstular/fix-atqa-comparison

Fix - assignment instead of comparison (PCSC driver)
This commit is contained in:
Philippe Teuwen 2021-08-05 09:12:47 +02:00 committed by GitHub
commit c8185c9eca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -353,7 +353,7 @@ static int pcsc_props_to_target(struct nfc_device *pnd, uint8_t it, const uint8_
uint8_t atqa[2];
pcsc_get_atqa(pnd, atqa, sizeof(atqa));
//ATQA Coding of NXP Contactless Card ICs
if(atqa[0] = 0x00 || atqa[0] == 0x03)
if(atqa[0] == 0x00 || atqa[0] == 0x03)
{
memcpy(pnt->nti.nai.abtAtqa,atqa,2);
}else {