Package: debmirror
Version: 20051209
Severity: minor
Tags: patch
Hi,
a typo prevents the hash marks go to STDOUT. Patch is attached.
Regards,
Bastian
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (900, 'unstable')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-treasure5
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Versions of packages debmirror depends on:
ii bzip2 1.0.3-2 high-quality block-sorting file co
ii libcompress-zlib-perl 1.41-1 Perl module for creation and manip
ii liblockfile-simple-perl 0.2.5-7 Simple advisory file locking
ii libnet-perl 1:1.19-3 Implementation of Internet protoco
ii libwww-perl 5.803-4 WWW client/server library for Perl
ii perl [libdigest-md5-perl] 5.8.7-10 Larry Wall's Practical Extraction
ii perl-modules [libnet-perl] 5.8.7-10 Core Perl modules
ii rsync 2.6.6-1 fast remote file copy program (lik
Versions of packages debmirror recommends:
ii gnupg 1.4.2-2 GNU privacy guard - a free PGP rep
-- no debconf information
--- /usr/bin/debmirror.orig 2006-01-25 17:44:04.518170377 +0100
+++ /usr/bin/debmirror 2006-01-25 17:41:13.633238853 +0100
@@ -538,7 +538,7 @@
$ftp->login($user) or die "login failed"; # anonymous
$ftp->binary or die "could not set binary mode";
$ftp->cwd($remoteroot) or die "cwd to $remoteroot failed";
- $ftp->hash(*STDOUT,102400) if $progress;
+ $ftp->hash(\*STDOUT,102400) if $progress;
return;
};