From 2cff3a031da1fa18db56d274b8067c45ad6ad1fc Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Thu, 9 Sep 2004 00:21:03 +0000 Subject: Fix regexp --- perl-install/install_steps_interactive.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 9590b85eb..51bcd3776 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1201,7 +1201,7 @@ sub addUser { if !member('mandrake', map { $_->{name} } @{$o->{users}}); } if ($o->{security} >= 1 || $clicked) { - my @suggested_names = @{$o->{users}} ? () : grep { !/lost+found/ } all("$::prefix/home"); + my @suggested_names = @{$o->{users}} ? () : grep { !/lost\+found/ } all("$::prefix/home"); any::ask_users($o, $o->{users}, $o->{security}, \@suggested_names); } add2hash($o, any::get_autologin()); -- cgit v1.2.1