Merge pull request from uhei/master

cmdparser: fix copy& paste typo
This commit is contained in:
Iceman 2019-05-01 21:41:42 +02:00 committed by GitHub
commit c93eee5c72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -81,7 +81,7 @@ bool IfPm3Iso14443a(void) {
return pm3_capabilities.compiled_with_iso14443a; return pm3_capabilities.compiled_with_iso14443a;
} }
bool IfPm3Iso14443a(void) { bool IfPm3Iso14443b(void) {
if (!IfPm3Present()) if (!IfPm3Present())
return false; return false;
return pm3_capabilities.compiled_with_iso14443b; return pm3_capabilities.compiled_with_iso14443b;

View file

@ -30,7 +30,7 @@ bool IfPm3Lf(void);
bool IfPm3Hitag(void); bool IfPm3Hitag(void);
bool IfPm3Hfsniff(void); bool IfPm3Hfsniff(void);
bool IfPm3Iso14443a(void); bool IfPm3Iso14443a(void);
bool IfPm3Iso14443a(void); bool IfPm3Iso14443b(void);
bool IfPm3Iso15693(void); bool IfPm3Iso15693(void);
bool IfPm3Felica(void); bool IfPm3Felica(void);
bool IfPm3Legicrf(void); bool IfPm3Legicrf(void);