From 52179146b6c9e80f73ef8be474dc90f92cb52ac2 Mon Sep 17 00:00:00 2001 From: Uli Heilmeier <uh@heilmeier.eu> Date: Wed, 1 May 2019 21:31:34 +0200 Subject: [PATCH] cmdparser: fix copy& paste typo --- client/cmdparser.c | 2 +- client/cmdparser.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/cmdparser.c b/client/cmdparser.c index 0eeb6c8d5..2ecd25fc4 100644 --- a/client/cmdparser.c +++ b/client/cmdparser.c @@ -81,7 +81,7 @@ bool IfPm3Iso14443a(void) { return pm3_capabilities.compiled_with_iso14443a; } -bool IfPm3Iso14443a(void) { +bool IfPm3Iso14443b(void) { if (!IfPm3Present()) return false; return pm3_capabilities.compiled_with_iso14443b; diff --git a/client/cmdparser.h b/client/cmdparser.h index 48e465075..57c5422e9 100644 --- a/client/cmdparser.h +++ b/client/cmdparser.h @@ -30,7 +30,7 @@ bool IfPm3Lf(void); bool IfPm3Hitag(void); bool IfPm3Hfsniff(void); bool IfPm3Iso14443a(void); -bool IfPm3Iso14443a(void); +bool IfPm3Iso14443b(void); bool IfPm3Iso15693(void); bool IfPm3Felica(void); bool IfPm3Legicrf(void);