From 1be1654e5f15d638a6c72f22bc0cc2271072998c Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Fri, 10 Oct 2014 06:05:06 -0700 Subject: [PATCH] Correctly identify the synonym for orte_direct_modex_cutoff as ompi_hostname_cutoff --- orte/runtime/orte_mca_params.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/runtime/orte_mca_params.c b/orte/runtime/orte_mca_params.c index f4c1e0cb53..474dc2fbf9 100644 --- a/orte/runtime/orte_mca_params.c +++ b/orte/runtime/orte_mca_params.c @@ -741,7 +741,7 @@ int orte_register_params(void) OPAL_INFO_LVL_9, MCA_BASE_VAR_SCOPE_READONLY, &orte_direct_modex_cutoff); /* register a synonym for old name */ - mca_base_var_register_synonym (id, "ompi", "direct_modex", "cutoff", NULL, MCA_BASE_VAR_SYN_FLAG_DEPRECATED); + mca_base_var_register_synonym (id, "ompi", "ompi", "hostname", "cutoff", MCA_BASE_VAR_SYN_FLAG_DEPRECATED); return ORTE_SUCCESS; }