aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--Rpmdrake/pkg.pm4
2 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 67eb9dbc..a3f6d475 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- fix error introduced in 4.4.2
+
Version 4.4.2 - 6 March 2008, Thierry Vignaud
- fix not listing all updates (#*38595)
diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm
index ec7a73f2..f4e7ab5c 100644
--- a/Rpmdrake/pkg.pm
+++ b/Rpmdrake/pkg.pm
@@ -421,8 +421,8 @@ sub get_pkgs {
$urpm, $state, $requested,
callback_choices => \&Rpmdrake::gui::callback_choices,
priority_upgrade => $urpm->{options}{'priority-upgrade'},
- auto_select => $probe_only_for_updates,
- only_request_packages_to_upgrade => 1,
+ auto_select => 1,
+ only_request_packages_to_upgrade => $probe_only_for_updates,
upgrade_callback => sub {
my ($requested) = @_;
@requested = sort map { urpm_name($_) } @{$urpm->{depslist}}[keys %$requested];