1
1

Correct logic - only issue recv and cancel it if we are an HNP

This commit was SVN r17641.
Этот коммит содержится в:
Ralph Castain 2008-02-28 15:27:16 +00:00
родитель d9937cca81
Коммит 5dc64cea6a

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

@ -66,7 +66,7 @@ int orte_filem_base_comm_start(void)
{
int rc;
if (recv_issued && orte_process_info.hnp) {
if (recv_issued || !orte_process_info.hnp) {
return ORTE_SUCCESS;
}
@ -92,7 +92,7 @@ int orte_filem_base_comm_stop(void)
{
int rc;
if (!recv_issued && orte_process_info.hnp) {
if (!recv_issued || !orte_process_info.hnp) {
return ORTE_SUCCESS;
}