summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2010-02-10 16:59:04 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2010-02-10 16:59:04 +0000
commite7270c1419c6fe696641104a38cb679377f07e8b (patch)
tree9cebb083cb23135df187e0b3631246b45fb13e05
parentbc84f82fd051b7bb6e9e37e1ed5f9986febb3617 (diff)
downloaddrakx-backup-do-not-use-e7270c1419c6fe696641104a38cb679377f07e8b.tar
drakx-backup-do-not-use-e7270c1419c6fe696641104a38cb679377f07e8b.tar.gz
drakx-backup-do-not-use-e7270c1419c6fe696641104a38cb679377f07e8b.tar.bz2
drakx-backup-do-not-use-e7270c1419c6fe696641104a38cb679377f07e8b.tar.xz
drakx-backup-do-not-use-e7270c1419c6fe696641104a38cb679377f07e8b.zip
drakboot: fix crypted password detection
-rw-r--r--perl-install/bootloader.pm2
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 {