1
1
This commit was SVN r22899.
Этот коммит содержится в:
Ralph Castain 2010-03-28 15:41:27 +00:00
родитель 1a100812a9
Коммит 4f9db20d94
2 изменённых файлов: 8 добавлений и 1 удалений

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

@ -960,6 +960,13 @@ static void process_recv(int fd, short event, void *cbdata)
}
}
/* if the sender's vpid is invalid, then this is a request for
* assignment of a name - so don't log the message
*/
if (ORTE_VPID_INVALID == name.vpid) {
goto MATCH;
}
/* look up the message log for this sender */
log = NULL;
for (n=0; n < msg_log.size; n++) {

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

@ -36,7 +36,7 @@ static int orte_rmcast_udp_query(mca_base_module_t **module, int *priority);
static bool initialized = false;
/*
* Public string showing the iof hnp component version number
* Public string showing the rmcast udp component version number
*/
const char *mca_rmcast_udp_component_version_string =
"Open MPI udp rmcast MCA component version " ORTE_VERSION;