diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-03-09 21:32:57 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-03-09 21:32:57 +0000 |
commit | cff4ae831a0a67314876a28e165343b17c0c3560 (patch) | |
tree | af71e3ae3ea28ab32b0cc86d0a8e67461a255fb4 | |
parent | 8552a2041f6475d300e47acd3bd3e1254ef63b49 (diff) | |
download | drakx-cff4ae831a0a67314876a28e165343b17c0c3560.tar drakx-cff4ae831a0a67314876a28e165343b17c0c3560.tar.gz drakx-cff4ae831a0a67314876a28e165343b17c0c3560.tar.bz2 drakx-cff4ae831a0a67314876a28e165343b17c0c3560.tar.xz drakx-cff4ae831a0a67314876a28e165343b17c0c3560.zip |
make perl_checker a happy prog
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 275df04e2..90d10e869 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -156,7 +156,7 @@ sub selectInstallClass { log::l("choosing to upgrade partition $part->{device}"); install_any::use_root_part($o->{all_hds}, $part, $o->{prefix}); foreach (grep { $_->{mntpoint} } @{$o->{fstab}}) { - my ($options, $unknown) = fs::mount_options_unpack($_); + my ($options, $_unknown) = fs::mount_options_unpack($_); $options->{encrypted} or next; $o->ask_from_({ focus_first => 1 }, [ { label => N("Encryption key for %s", $_->{mntpoint}), |