1
1

Remove some \n typos. Thanks to Glenn Morris for finding these.

This commit was SVN r8878.
Этот коммит содержится в:
Jeff Squyres 2006-02-02 05:50:15 +00:00
родитель 232bb9534a
Коммит f7097d34c8
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -29,6 +29,8 @@ version 1.0.
1.0.2 1.0.2
----- -----
- Removed extraneous \n's when setting PATH and LD_LIBRARY_PATH in the
rsh startup. Thanks to Glen Morris for finding these typos.
- Fixed missing constants in MPI C++ bindings. - Fixed missing constants in MPI C++ bindings.
- Fixed some errors caused by threading issues. - Fixed some errors caused by threading issues.
- Fixed openib BTL flow control logic to not overrun the number of - Fixed openib BTL flow control logic to not overrun the number of

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

@ -748,7 +748,7 @@ int orte_pls_rsh_launch(orte_jobid_t jobid)
/* Reset PATH */ /* Reset PATH */
oldenv = getenv("PATH"); oldenv = getenv("PATH");
if (NULL != oldenv) { if (NULL != oldenv) {
asprintf(&newenv, "%s/bin:%s\n", prefix_dir, oldenv); asprintf(&newenv, "%s/bin:%s", prefix_dir, oldenv);
} else { } else {
asprintf(&newenv, "%s/bin", prefix_dir); asprintf(&newenv, "%s/bin", prefix_dir);
} }
@ -761,7 +761,7 @@ int orte_pls_rsh_launch(orte_jobid_t jobid)
/* Reset LD_LIBRARY_PATH */ /* Reset LD_LIBRARY_PATH */
oldenv = getenv("LD_LIBRARY_PATH"); oldenv = getenv("LD_LIBRARY_PATH");
if (NULL != oldenv) { if (NULL != oldenv) {
asprintf(&newenv, "%s/lib:%s\n", prefix_dir, oldenv); asprintf(&newenv, "%s/lib:%s", prefix_dir, oldenv);
} else { } else {
asprintf(&newenv, "%s/lib", prefix_dir); asprintf(&newenv, "%s/lib", prefix_dir);
} }