From: Martin Langhoff Date: Thu, 7 Dec 2006 03:38:50 +0000 (+1300) Subject: cvsserver: Avoid miscounting bytes in Perl v5.8.x X-Git-Tag: v1.4.4.3~9 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/4f88d3e0cbf443cd309c2c881209f3366f14023d?ds=inline;hp=--cc cvsserver: Avoid miscounting bytes in Perl v5.8.x At some point between v5.6 and 5.8 Perl started to assume its input, output and filehandles are UTF-8. This breaks the counting of bytes for the CVS protocol, resulting in the client expecting less data than we actually send, and storing truncated files. Signed-off-by: Martin Langhoff Signed-off-by: Junio C Hamano --- 4f88d3e0cbf443cd309c2c881209f3366f14023d diff --git a/git-cvsserver.perl b/git-cvsserver.perl index ca519b7e49..197014d9e6 100755 --- a/git-cvsserver.perl +++ b/git-cvsserver.perl @@ -17,6 +17,7 @@ use strict; use warnings; +use bytes; use Fcntl; use File::Temp qw/tempdir tempfile/;