diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-06-08 08:04:37 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-06-08 08:04:37 +0000 |
commit | 5f5085b251fb64d86adb48e0bba2b69838c41a7a (patch) | |
tree | 781ee9bc1941fc0f145b187a949156779c14ff1a /urpm | |
parent | 35ecffe9e0a55d81b9a3c4ef1633bdd9e382e0d1 (diff) | |
download | urpmi-5f5085b251fb64d86adb48e0bba2b69838c41a7a.tar urpmi-5f5085b251fb64d86adb48e0bba2b69838c41a7a.tar.gz urpmi-5f5085b251fb64d86adb48e0bba2b69838c41a7a.tar.bz2 urpmi-5f5085b251fb64d86adb48e0bba2b69838c41a7a.tar.xz urpmi-5f5085b251fb64d86adb48e0bba2b69838c41a7a.zip |
Don't use hashes in scalar context
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/parallel_ssh.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/urpm/parallel_ssh.pm b/urpm/parallel_ssh.pm index eb51158e..30d7df18 100644 --- a/urpm/parallel_ssh.pm +++ b/urpm/parallel_ssh.pm @@ -92,7 +92,7 @@ sub parallel_find_remove { #- if at least one node has the package, it should be seen as unknown... delete @notfound{map { /^(.*)-[^-]*-[^-]*$/ } keys %{$state->{rejected}}}; - if (%notfound) { + if (keys %notfound) { $options{callback_notfound} and $options{callback_notfound}->($urpm, keys %notfound) or delete $state->{rejected}; } @@ -136,7 +136,7 @@ sub parallel_resolve_dependencies { } $_ = $best_requested || $best; } - #- simplified choices resolution. + #- simplified choice resolution. my $choice = $options{callback_choices}->($urpm, undef, $state, [ values %$packages ]); if ($choice) { $urpm->{source}{$choice->id} and next; #- local packages have already been added. @@ -228,7 +228,7 @@ sub parallel_install { exists $bad_nodes{$_} or next; $urpm->{error}(urpm::N("Installation failed on node %s", $_) . ":\n" . $bad_nodes{$_}); } - %bad_nodes and return; + keys %bad_nodes and return; if ($options{test}) { $urpm->{error}(urpm::N("Installation is possible")); |