diff options
author | Francois Pons <fpons@mandriva.com> | 2002-01-18 10:24:07 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-01-18 10:24:07 +0000 |
commit | b740895227d04359e22a440e298f3b0b060b1b75 (patch) | |
tree | 8628db876f1cd722737577c702368d030d195dce | |
parent | 0a74a5c3d3e8f6bf97733e7fb16b7d6a546a9a93 (diff) | |
download | drakx-b740895227d04359e22a440e298f3b0b060b1b75.tar drakx-b740895227d04359e22a440e298f3b0b060b1b75.tar.gz drakx-b740895227d04359e22a440e298f3b0b060b1b75.tar.bz2 drakx-b740895227d04359e22a440e298f3b0b060b1b75.tar.xz drakx-b740895227d04359e22a440e298f3b0b060b1b75.zip |
fixed typo.
-rw-r--r-- | perl-install/crypto.pm | 2 | ||||
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/crypto.pm b/perl-install/crypto.pm index f5a80d4c3..4b7e48572 100644 --- a/perl-install/crypto.pm +++ b/perl-install/crypto.pm @@ -128,7 +128,7 @@ sub getPackages { #- keep in mind where is the URL prefix used according to mirror (for install_any::install_urpmi). $update_medium->{prefix} = "ftp://$mirror" . dir($mirror); #- (re-)enable the medium to allow install of package. - $update_medium->{select} = 1; + $update_medium->{selected} = 1; return $update_medium; } diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index ec8a4b4d9..0c705fc34 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -930,7 +930,7 @@ Do you want to install the updates ?"))) || return; } else { #- make sure to not try to install the packages (which are automatically selected by getPackage above). #- this is possible by deselecting the medium (which can be re-selected above). - delete $update_medium->{select}; + delete $update_medium->{selected}; } } |