Hi, On Thu, Jun 02, 2011 at 08:35:55PM +0200, Yury V. Zaytsev wrote: > Thanks Agustin! I've got the patch in mc's official git repository by > now, so if you want just fetch latest 4.7.0-stable branch, it's there.
For those who want to fix this very nasty thing on their local installation I just would like to add a complete patch which fixes the issue. > I really need to get back to packaging :-/ ... Apropos packaging: I offered to help in uploading fixes like this but it is not clear to me how to submit the changes to VCS. I would love to upload this fix as well as a fix for #616196 as team upload, but I have no idea if this is welcome and how to use the repository properly. Kind regards Andreas. -- http://fam-tille.de
Authors: Jakub Wilk <jw...@debian.org>, Andreas Tille <ti...@debian.org> Description: Enable reading *.deb files again Closes: #626171, #628762 --- mc-4.7.0.9.orig/lib/vfs/mc-vfs/extfs/deb.in +++ mc-4.7.0.9/lib/vfs/mc-vfs/extfs/deb.in @@ -46,7 +46,7 @@ sub mcdebfs_list { while(<PIPEIN>) { - split; + @_ = split; $perm=$_[0]; $owgr=$_[1]; $size=$_[2]; if($_[3] =~ /^\d\d\d\d\-/) { # New tar format @@ -100,7 +100,7 @@ sub mcdebfs_list { while(<PIPEIN>) { - split; + @_ = split; $size=$_[0]; last if $size =~ /:/; next if $size !~ /\d+/;