From: marshmellow42 Date: Wed, 13 May 2015 15:22:27 +0000 (-0400) Subject: minor hf mfu info adjustment from @iceman1001 X-Git-Tag: v2.1.0~12^2~23 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/6fdf42c61cd4c1a71c2b1de2887e28ed33b4cd70 minor hf mfu info adjustment from @iceman1001 --- 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; }