From bb1a51988cf08d3bef272aad1df61c2b09db82d4 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 24 Feb 2022 17:24:42 +0100 Subject: [PATCH] fixes to "hf cipurse info" --- client/src/cipurse/cipursecore.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/src/cipurse/cipursecore.c b/client/src/cipurse/cipursecore.c index cce2d0484..76b9d9b8d 100644 --- a/client/src/cipurse/cipursecore.c +++ b/client/src/cipurse/cipursecore.c @@ -332,8 +332,7 @@ void CIPURSEPrintInfoFile(uint8_t *data, size_t len) { } PrintAndLogEx(INFO, "--- " _CYAN_("CIPURSE Information") "---------------------"); - PrintAndLogEx(INFO, "version........ " _YELLOW_("%d"), data[0]); - PrintAndLogEx(INFO, "revision....... " _YELLOW_("%d"), data[1]); + PrintAndLogEx(INFO, "Version........ " _YELLOW_("v%d.%d"), data[0], data[1]); if (len >= 3) CIPURSEPrintPersoMode(data[2]);