diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-08-31 16:45:43 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-08-31 16:45:43 +0000 |
commit | e2cfeee002f8de124a1bc0acbf2f7740d3413d29 (patch) | |
tree | 6349a1dc20c21b7e0b26984bc6c6ca89f02ff4e3 /urpm/get_pkgs.pm | |
parent | 1e44bc5b945c18e71117fd3653f1c30c54b52794 (diff) | |
download | urpmi-e2cfeee002f8de124a1bc0acbf2f7740d3413d29.tar urpmi-e2cfeee002f8de124a1bc0acbf2f7740d3413d29.tar.gz urpmi-e2cfeee002f8de124a1bc0acbf2f7740d3413d29.tar.bz2 urpmi-e2cfeee002f8de124a1bc0acbf2f7740d3413d29.tar.xz urpmi-e2cfeee002f8de124a1bc0acbf2f7740d3413d29.zip |
(get_distant_media_filesize) kill unused parameter
Diffstat (limited to 'urpm/get_pkgs.pm')
-rw-r--r-- | urpm/get_pkgs.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/get_pkgs.pm b/urpm/get_pkgs.pm index 7f6bcc28..3326b7a1 100644 --- a/urpm/get_pkgs.pm +++ b/urpm/get_pkgs.pm @@ -179,14 +179,14 @@ sub verify_partial_rpm_and_move { } -=item get_distant_media_filesize(undef, $blists, $sources) +=item get_distant_media_filesize($blists, $sources) Get the filesize of packages to download from remote media. =cut sub get_distant_media_filesize { - my (undef, $blists, $sources) = @_; + my ($blists, $sources) = @_; my $filesize; #- get back all ftp and http accessible rpm files into the local cache |