[svk-commit] r3043 - trunk/lib/SVK

nobody at bestpractical.com nobody at bestpractical.com
Fri Aug 1 15:50:40 EDT 2008


Author: clkao
Date: Fri Aug  1 15:50:38 2008
New Revision: 3043

Modified:
   trunk/lib/SVK/Mirror.pm

Log:
open bootstrap file raw.

Modified: trunk/lib/SVK/Mirror.pm
==============================================================================
--- trunk/lib/SVK/Mirror.pm	(original)
+++ trunk/lib/SVK/Mirror.pm	Fri Aug  1 15:50:38 2008
@@ -287,10 +287,10 @@
             ':read_size_hint' => 16384,
         );
         die $response->status_line unless $response->is_success;
-        open $fh, "<", $path or die $!;
+        open $fh, "<:raw", $path or die $!;
     }
     else {
-        open $fh, '<', $dumpfile or die $!;
+        open $fh, '<:raw', $dumpfile or die $!;
     }
 
     # XXX make these fail optionally


More information about the svk-commit mailing list