X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/6cacefa48d89ec6f87a637ef2b69f31f80165913..1a4b907335746ab94eb8bb78e2625c6f98584ac3:/client/scripts/dumptoemul.lua?ds=sidebyside

diff --git a/client/scripts/dumptoemul.lua b/client/scripts/dumptoemul.lua
index f4f91931..f298268a 100644
--- a/client/scripts/dumptoemul.lua
+++ b/client/scripts/dumptoemul.lua
@@ -13,7 +13,7 @@ by the emulator
 Arguments:
 	-h 				This help
 	-i <file>		Specifies the dump-file (input). If omitted, 'dumpdata.bin' is used	
-	-o <filename>	Speciies the output file. If omitted, <uid>.eml is used. 	
+	-o <filename>	Specifies the output file. If omitted, <uid>.eml is used. 	
 
 ]]
 
@@ -33,12 +33,11 @@ end
 function oops(err)
 	print("ERROR: ",err)
 end
-
-
 --- 
 -- Usage help
 function help()
 	print(desc)
+	print(author)
 	print("Example usage")
 	print(example)
 end
@@ -58,10 +57,8 @@ end
 
 local function readdump(infile)
 	 t = infile:read("*all")
-	 --print(string.len(t))
 	 len = string.len(t)
 	 local len,hex = bin.unpack(("H%d"):format(len),t)
-	 --print(len,hex)
 	 return hex
 end
 
@@ -73,7 +70,8 @@ local function convert_to_emulform(hexdata)
 	for i = 1, string.len(hexdata),32 do
 		ascii = ascii  ..string.sub(hexdata,i,i+31).."\n"
 	end
-	return ascii
+	
+	return string.sub(ascii,1,-1)
 end
 
 local function main(args)