From e4a9e348d657d08608b0b5f6c0ae4906404e108d Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 14 Mar 2019 07:42:48 +0100 Subject: [PATCH] chg: 'lf hitag list' - now uses the generic list. --- client/cmdlfhitag.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/client/cmdlfhitag.c b/client/cmdlfhitag.c index d088247af..bdf5c7605 100644 --- a/client/cmdlfhitag.c +++ b/client/cmdlfhitag.c @@ -90,7 +90,11 @@ int usage_hitag_writer(void) { return 0; } -int CmdLFHitagList(const char *Cmd) { +int CmdLFHitagList(const char *Cmd) { + CmdTraceList("hitag"); + return 0; + + /* uint8_t *got = calloc(USB_CMD_DATA_SIZE, sizeof(uint8_t)); if (!got) { PrintAndLogEx(WARNING, "Cannot allocate memory for trace"); @@ -215,6 +219,7 @@ int CmdLFHitagList(const char *Cmd) { free(got); return 0; + */ } int CmdLFHitagSniff(const char *Cmd) { @@ -231,7 +236,6 @@ int CmdLFHitagSniff(const char *Cmd) { int CmdLFHitagSim(const char *Cmd) { bool errors = false; - bool useHitagS = false; bool tag_mem_supplied = false; uint8_t cmdp = 0; size_t maxdatalen = 48;