From 84cbfb164e09f189b1e85139b6bf0f4b0fe35767 Mon Sep 17 00:00:00 2001
From: Jack Nagel <jacknagel@gmail.com>
Date: Mon, 16 Sep 2013 12:50:31 -0500
Subject: [PATCH] Open files in binary mode where appropriate

---
 Library/Homebrew/extend/pathname.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb
index cdc5907c50..d39b692adc 100644
--- a/Library/Homebrew/extend/pathname.rb
+++ b/Library/Homebrew/extend/pathname.rb
@@ -174,7 +174,7 @@ class Pathname
     # Get enough of the file to detect common file types
     # POSIX tar magic has a 257 byte offset
     # magic numbers stolen from /usr/share/file/magic/
-    case open { |f| f.read(262) }
+    case open('rb') { |f| f.read(262) }
     when /^PK\003\004/n         then :zip
     when /^\037\213/n           then :gzip
     when /^BZh/n                then :bzip2
@@ -200,7 +200,7 @@ class Pathname
   def incremental_hash(hasher)
     incr_hash = hasher.new
     buf = ""
-    open('r') { |f| incr_hash << buf while f.read(1024, buf) }
+    open('rb') { |f| incr_hash << buf while f.read(1024, buf) }
     incr_hash.hexdigest
   end
 
-- 
GitLab