1
1

Remove extra argument - now obsoleted by the use of opal_os_path().

This commit was SVN r11366.
Этот коммит содержится в:
Jeff Squyres 2006-08-23 14:32:06 +00:00
родитель 76b3821b06
Коммит 715bae369c

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

@ -803,7 +803,7 @@ int orte_pls_rsh_launch(orte_jobid_t jobid)
oldenv = getenv("LD_LIBRARY_PATH");
if (NULL != oldenv) {
char* temp;
asprintf(&temp, "%s:%s", newenv, lib_base, oldenv, NULL);
asprintf(&temp, "%s:%s", newenv, oldenv, NULL);
free(newenv);
newenv = temp;
}