1
1

Fix the fix to remove compiler warning - an incorrect "\" was placed in the command string.

This commit was SVN r12805.
Этот коммит содержится в:
Ralph Castain 2006-12-08 04:17:38 +00:00
родитель 568d20de37
Коммит 58569546ed

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

@ -641,7 +641,7 @@ int orte_pls_rsh_launch(orte_jobid_t jobid)
if (!(remote_csh || remote_sh)) {
int i;
tmp = opal_argv_split("( test \! -r ./.profile || . ./.profile;", ' ');
tmp = opal_argv_split("( test ! -r ./.profile || . ./.profile;", ' ');
if (NULL == tmp) {
return ORTE_ERR_OUT_OF_RESOURCE;
}