diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-03-02 13:59:14 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-03-02 13:59:14 +0000 |
commit | 07e63eb1aa32230a39cdcfb3771f1d9f87a6e188 (patch) | |
tree | aec99beee71011df2c03547caff918d4ac4cfc8c /perl-install/install/steps.pm | |
parent | eb43d0218ba9b29eb92c41783be4591652bc7e9d (diff) | |
download | drakx-07e63eb1aa32230a39cdcfb3771f1d9f87a6e188.tar drakx-07e63eb1aa32230a39cdcfb3771f1d9f87a6e188.tar.gz drakx-07e63eb1aa32230a39cdcfb3771f1d9f87a6e188.tar.bz2 drakx-07e63eb1aa32230a39cdcfb3771f1d9f87a6e188.tar.xz drakx-07e63eb1aa32230a39cdcfb3771f1d9f87a6e188.zip |
(ask_change_cd) adapt to new API
Diffstat (limited to 'perl-install/install/steps.pm')
-rw-r--r-- | perl-install/install/steps.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm index 6ffb79935..bd81563bc 100644 --- a/perl-install/install/steps.pm +++ b/perl-install/install/steps.pm @@ -254,8 +254,8 @@ sub ask_deselect_media__copy_on_disk { } sub ask_change_cd { - my (undef, $phys_m, $_o_rel_file) = @_; - log::l("change to medium " . install::media::phys_medium_to_string($phys_m) . " refused (it can't be done automatically)"); + my (undef, $phys_m) = @_; + log::l("change to medium $phys_m refused (it can't be done automatically)"); 0; } |