Skip to content
Snippets Groups Projects
Commit 097e6093 authored by Adam Moody's avatar Adam Moody Committed by Morris Jette
Browse files

remove newlines in mvapich abort message before writing to syslog

parent 2ce202a9
No related branches found
No related tags found
No related merge requests found
......@@ -1238,6 +1238,7 @@ mvapich_print_abort_message (mvapich_state_t *st, int rank,
int dest, char *msg, int msglen)
{
slurm_step_layout_t *sl = st->job->step_layout;
int i;
char *host;
char *msgstr;
char time_stamp[256];
......@@ -1255,6 +1256,16 @@ mvapich_print_abort_message (mvapich_state_t *st, int rank,
if (msg [msglen - 1] == '\n')
msg [msglen - 1] = '\0';
/*
* Replace internal newlines with periods. We want
* the full message to be written as a single line
* to the syslog.
*/
for (i = 0; i < msglen; i++) {
if (msg [i] == '\n')
msg [i] = '.';
}
msgstr = msg;
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment