summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/bootloader.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 23fde61ac..25817e105 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,4 +1,6 @@
- add support for asturian (#56990)
+- drakboot:
+ o fix crypted password detection
Version 13.10 - 4 February 2010
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index 08b099890..be7f5bebc 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -325,7 +325,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 {