From 5fdebe8c79cef7b26538beede11166be202cb905 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Wed, 10 Feb 2010 10:27:58 +0000 Subject: drakboot: fix crypted password detection --- perl-install/NEWS | 2 ++ perl-install/bootloader.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'perl-install') 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 { -- cgit v1.2.1