From 6fdf42c61cd4c1a71c2b1de2887e28ed33b4cd70 Mon Sep 17 00:00:00 2001 From: marshmellow42 Date: Wed, 13 May 2015 11:22:27 -0400 Subject: [PATCH] minor hf mfu info adjustment from @iceman1001 --- client/cmdhfmfu.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/client/cmdhfmfu.c b/client/cmdhfmfu.c index 11282857..d8060894 100644 --- a/client/cmdhfmfu.c +++ b/client/cmdhfmfu.c @@ -271,9 +271,14 @@ static int ul_print_default( uint8_t *data){ PrintAndLog(" BCC1 : %02X - crc should be %02X", data[8], crc1 ); PrintAndLog(" Internal : %02X - %s default", data[9], (data[9]==0x48)?"":"not" ); - PrintAndLog(" Lock : %s - %s", sprint_hex(data+10, 2),printBits( 2, data+10) ); - PrintAndLog("OneTimePad : %s ", sprint_hex(data + 12, 4)); - PrintAndLog(""); + PrintAndLog(" Lock : %s - %s", + sprint_hex(data+10, 2), + printBits(2, data+10) + ); + PrintAndLog("OneTimePad : %s - %s\n", + sprint_hex(data + 12, 4), + printBits(4, data+12) + ); return 0; } -- 2.39.2