]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
Merge pull request #456 from merlokk/hfreaderfix
authormarshmellow42 <marshmellow42@users.noreply.github.com>
Wed, 1 Nov 2017 11:57:30 +0000 (07:57 -0400)
committerGitHub <noreply@github.com>
Wed, 1 Nov 2017 11:57:30 +0000 (07:57 -0400)
fixed bug with `hf search 14a`

client/cmdhf.c
client/cmdhf14a.h

index 6aa5ae4e5e2d5809e9701ebaa5c447dcb9369baf..168296baf0d5e3bb1a30a3cc96211e3366f3e6c8 100644 (file)
@@ -663,7 +663,7 @@ int CmdHFList(const char *Cmd)
 int CmdHFSearch(const char *Cmd){
        int ans = 0;
        PrintAndLog("");
-       ans = CmdHF14AReader("s");
+       ans = CmdHF14AInfo("s");
        if (ans > 0) {
                PrintAndLog("\nValid ISO14443A Tag Found - Quiting Search\n");
                return ans;
index dfdf1f4ab6092600bd1a671959f14ee6412fc094..2556678d0a1e6b2ddda387d6c6f7da2bfb7f0880 100644 (file)
@@ -18,6 +18,7 @@ int CmdHF14A(const char *Cmd);
 int CmdHF14AList(const char *Cmd);
 int CmdHF14AMifare(const char *Cmd);
 int CmdHF14AReader(const char *Cmd);
+extern int CmdHF14AInfo(const char *Cmd);
 int CmdHF14ASim(const char *Cmd);
 int CmdHF14ASnoop(const char *Cmd);
 char* getTagInfo(uint8_t uid);
Impressum, Datenschutz