From 0e32bf46e70b7feb133f17e99b4c7d4e2590886f Mon Sep 17 00:00:00 2001
From: iceman1001 <iceman@iuse.se>
Date: Thu, 14 Apr 2016 11:32:43 +0200
Subject: [PATCH] CHG: added the ascii output for the pwd.

---
 client/cmdhfmfu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client/cmdhfmfu.c b/client/cmdhfmfu.c
index 6aac15ce..336fd64a 100644
--- a/client/cmdhfmfu.c
+++ b/client/cmdhfmfu.c
@@ -1614,7 +1614,7 @@ int CmdHF14AMfUDump(const char *Cmd){
 	PrintAndLog("---------------------------------");
 	for (i = 0; i < Pages; ++i) {
 		if ( i < 3 ) {
-			PrintAndLog("%02d/0x%02X | %s|   | ", i+startPage, i+startPage, sprint_hex(data + i * 4, 4));
+			PrintAndLog("%02d/0x%02X | %s|   | %.4s", i+startPage, i+startPage, sprint_hex(data + i * 4, 4), data + i * 4 );
 			continue;
 		}
 		switch(i){
-- 
2.39.5