diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-06-26 11:17:10 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-06-26 11:17:10 +0000 |
commit | f504fc034e877525388e62d5ffaf2051e50e4655 (patch) | |
tree | da4c99ac0669f79f385d9e53cbf126776776d75c /urpm/get_pkgs.pm | |
parent | 88c4b8e65b198d0908b4b0387436e7f46bc29064 (diff) | |
download | urpmi-f504fc034e877525388e62d5ffaf2051e50e4655.tar urpmi-f504fc034e877525388e62d5ffaf2051e50e4655.tar.gz urpmi-f504fc034e877525388e62d5ffaf2051e50e4655.tar.bz2 urpmi-f504fc034e877525388e62d5ffaf2051e50e4655.tar.xz urpmi-f504fc034e877525388e62d5ffaf2051e50e4655.zip |
- urpmi
o fix displaying "files are missing" (regression introduced in 5.6)
Diffstat (limited to 'urpm/get_pkgs.pm')
-rw-r--r-- | urpm/get_pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/get_pkgs.pm b/urpm/get_pkgs.pm index 00083205..c489cf21 100644 --- a/urpm/get_pkgs.pm +++ b/urpm/get_pkgs.pm @@ -194,7 +194,7 @@ sub download_packages_of_distant_media { #- clean failed download which have succeeded. delete @errors{keys %$sources}; - %$error_sources = map { @$_ } values %errors; + push @$error_sources, values %errors; 1; } |