1
1

Be sure to check .ompi_unignore properly against the multi-line

string. 

This commit was SVN r24788.
Этот коммит содержится в:
Jeff Squyres 2011-06-20 17:47:33 +00:00
родитель c4f9debe21
Коммит 3d242c6ab2

Просмотреть файл

@ -255,9 +255,9 @@ sub ignored {
close(UNIGNORE);
$ignored = 0
if ($unignore =~ /^$username$/ ||
$unignore =~ /^$username\@$hostname$/ ||
$unignore =~ /^$username\@$full_hostname$/);
if ($unignore =~ /^$username$/m ||
$unignore =~ /^$username\@$hostname$/m ||
$unignore =~ /^$username\@$full_hostname$/m);
}
return $ignored;