diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2010-02-10 16:59:04 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2010-02-10 16:59:04 +0000 |
commit | e7270c1419c6fe696641104a38cb679377f07e8b (patch) | |
tree | 9cebb083cb23135df187e0b3631246b45fb13e05 | |
parent | bc84f82fd051b7bb6e9e37e1ed5f9986febb3617 (diff) | |
download | drakx-e7270c1419c6fe696641104a38cb679377f07e8b.tar drakx-e7270c1419c6fe696641104a38cb679377f07e8b.tar.gz drakx-e7270c1419c6fe696641104a38cb679377f07e8b.tar.bz2 drakx-e7270c1419c6fe696641104a38cb679377f07e8b.tar.xz drakx-e7270c1419c6fe696641104a38cb679377f07e8b.zip |
drakboot: fix crypted password detection
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index afbc7ea2c..27419ab14 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -322,7 +322,7 @@ sub _parse_grub_menu_lst() { sub is_already_crypted { my ($password) = @_; - $password =~ /^$1\$/; # CHECKME: EMPIRIC + $password =~ /^\$1\$/; # CHECKME: EMPIRIC } sub read_grub_menu_lst { |