From e7270c1419c6fe696641104a38cb679377f07e8b Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Wed, 10 Feb 2010 16:59:04 +0000 Subject: drakboot: fix crypted password detection --- perl-install/bootloader.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- cgit v1.2.1