summaryrefslogtreecommitdiffstats
path: root/urpm/select.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-09-26 19:12:48 +0000
committerThierry Vignaud <tv@mageia.org>2012-09-26 19:12:48 +0000
commit463ae8dd3011f9bf3014f92edc17af4250ba8d66 (patch)
tree5e5b4c03e3240234c95395f0a2b9eac9acd4f6c2 /urpm/select.pm
parent00f909e65833ea8ef73bf4a02b0dd8d7623636d6 (diff)
downloadurpmi-463ae8dd3011f9bf3014f92edc17af4250ba8d66.tar
urpmi-463ae8dd3011f9bf3014f92edc17af4250ba8d66.tar.gz
urpmi-463ae8dd3011f9bf3014f92edc17af4250ba8d66.tar.bz2
urpmi-463ae8dd3011f9bf3014f92edc17af4250ba8d66.tar.xz
urpmi-463ae8dd3011f9bf3014f92edc17af4250ba8d66.zip
adapt to URPM-4.15: find_candidate_packages_() => find_candidate_packages()
Diffstat (limited to 'urpm/select.pm')
-rw-r--r--urpm/select.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/select.pm b/urpm/select.pm
index 0b5c7fb3..2273ffe1 100644
--- a/urpm/select.pm
+++ b/urpm/select.pm
@@ -359,7 +359,7 @@ sub select_replacepkgs {
my $db = urpm::db_open_or_die_($urpm);
foreach my $id (keys %$requested) {
- my @pkgs = $urpm->find_candidate_packages_($id);
+ my @pkgs = $urpm->find_candidate_packages($id);
if (my ($pkg) = grep { URPM::is_package_installed($db, $_) } @pkgs) {
$urpm->{debug_URPM}("selecting replacepkg " . $pkg->fullname) if $urpm->{debug_URPM};
$pkg->set_flag_requested;