From: martin.holst@gmail.com Date: Thu, 7 Nov 2013 11:33:48 +0000 (+0000) Subject: Fixed issue with binary files in windows, http://www.lua.org/pil/21.2.2.html X-Git-Tag: v1.0.0~22 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/6cacefa48d89ec6f87a637ef2b69f31f80165913 Fixed issue with binary files in windows, http://www.lua.org/pil/21.2.2.html --- diff --git a/client/scripts/dumptoemul.lua b/client/scripts/dumptoemul.lua index b9d9b89a..f4f91931 100644 --- a/client/scripts/dumptoemul.lua +++ b/client/scripts/dumptoemul.lua @@ -88,7 +88,7 @@ local function main(args) end -- Validate the parameters - local infile = io.open(input, "r") + local infile = io.open(input, "rb") if infile == nil then return oops("Could not read file ", input) end @@ -118,4 +118,4 @@ In the future, we may implement so that scripts are invoked directly into a 'main' function, instead of being executed blindly. For future compatibility, I have done so, but I invoke my main from here. --]] -main(args) \ No newline at end of file +main(args)