From e6bd80b4244ef9d103215f3679bedc6b7cc402bd Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 18 Jan 2006 22:00:34 +0000 Subject: [PATCH] Per the commit message of r8514, change the search order to be "ssh : rsh", *not* "rsh : ssh". This commit was SVN r8736. The following SVN revision numbers were found above: r8514 --> open-mpi/ompi@9c25bdc5ac10eee4513bdfa5fe067161886a3817 --- orte/mca/pls/rsh/pls_rsh_component.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orte/mca/pls/rsh/pls_rsh_component.c b/orte/mca/pls/rsh/pls_rsh_component.c index 4fb1659d30..e6aff9e2c1 100644 --- a/orte/mca/pls/rsh/pls_rsh_component.c +++ b/orte/mca/pls/rsh/pls_rsh_component.c @@ -157,8 +157,8 @@ int orte_pls_rsh_component_open(void) mca_pls_rsh_component.assume_same_shell = tmp; mca_base_param_reg_string(c, "agent", - "The command used to launch executables on remote nodes (typically either \"rsh\" or \"ssh\")", - false, false, "rsh : ssh", + "The command used to launch executables on remote nodes (typically either \"ssh\" or \"rsh\")", + false, false, "ssh : rsh", &mca_pls_rsh_component.agent_param); return ORTE_SUCCESS;