From 077b3df7cc1f2831fbaf31776ca4a7bd1f0d7450 Mon Sep 17 00:00:00 2001 From: Josh Hursey Date: Mon, 10 Nov 2008 15:19:28 +0000 Subject: [PATCH] Fix C/R restart case by passing the correct address to the orte_ess_base_build_nidmap() function. This cropped up from r19866. It does not look like this effects the v1.3 branch since r19866 has not moved to the release branch. Thanks to Leonardo Fialho for reporting this and supplying a patch. This commit was SVN r19961. The following SVN revision numbers were found above: r19866 --> open-mpi/ompi@f54fda489e444c908c232d999fdf40658f27c0ca --- orte/mca/ess/env/ess_env_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/ess/env/ess_env_module.c b/orte/mca/ess/env/ess_env_module.c index ef0874e7bb..d527f8c655 100644 --- a/orte/mca/ess/env/ess_env_module.c +++ b/orte/mca/ess/env/ess_env_module.c @@ -657,7 +657,7 @@ static int rte_ft_event(int state) /* if one was provided, build my nidmap */ if (ORTE_SUCCESS != (ret = orte_ess_base_build_nidmap(orte_process_info.sync_buf, - &nidmap, &jmap->pmap))) { + &nidmap, jmap))) { ORTE_ERROR_LOG(ret); exit_status = ret; goto cleanup;