Changeset 77

Show
Ignore:
Timestamp:
10/29/06 15:33:43 (2 years ago)
Author:
bradfitz
Message:

another mart patch from trunk that didn't merge automatically

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/refactoring/lib/Brackup/PositionedChunk.pm

    r69 r77  
    7070    my $fullpath = $self->{file}->fullpath; 
    7171    open(my $fh, $fullpath) or die "Failed to open $fullpath: $!\n"; 
     72    binmode($fh); 
    7273    seek($fh, $self->{offset}, 0) or die "Couldn't seek: $!\n"; 
    7374    my $rv = read($fh, $data, $self->{length})