X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/b3123cf603e5f52f6cf0a682576c183c38cf89af..abcb166ffe26cab359cd80e0109e6131e31bef49:/client/scripts/ndef_dump.lua?ds=inline

diff --git a/client/scripts/ndef_dump.lua b/client/scripts/ndef_dump.lua
index f89f6db2..3b27cac3 100644
--- a/client/scripts/ndef_dump.lua
+++ b/client/scripts/ndef_dump.lua
@@ -59,8 +59,7 @@ local utils = {
 
 			local formatString = string.format("H%d", string.len(block))
 			local _,hex = bin.unpack(formatString,block)
-			file:write(hex)
-			file:write(0x0A) -- Line feed
+			file:write(hex.."\n")
 		end
 		file:close()	
 		return destination
@@ -206,7 +205,7 @@ local function main( args)
 
 	-- NDEF compliant?
 	if b3chars[1] ~= 0xE1 then 
-		return oops("This tag is not NDEF-Complian")
+		return oops("This tag is not NDEF-Compliant")
 	end 
 
 	local ndefVersion = b3chars[2]