1
1

Update compare function to properly deal with ALL.

This commit was SVN r1643.
Этот коммит содержится в:
Ralph Castain 2004-07-12 20:38:03 +00:00
родитель e7e31921a5
Коммит 0db082ad03

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

@ -148,7 +148,7 @@ int ns_base_compare(ompi_ns_cmp_bitmask_t fields,
const ompi_process_name_t* name1,
const ompi_process_name_t* name2)
{
if ((fields <= 0) || (fields > 7) || NULL == name1 || NULL == name2) { /* got an error */
if (NULL == name1 || NULL == name2) { /* got an error */
return(-100);
}