Commit abd8c5c5 abd8c5c5f57d9f8cfb5ad8f29e0478fcbee437e6 by Sergey Poznyakoff

Print newline not depending on the presence of Subject header.

1 parent 4ac3c3d3
......@@ -180,8 +180,9 @@ action (observer_t o, size_t type)
int status = header_get_value (hdr, MU_HEADER_SUBJECT, hsubject,
sizeof (hsubject), NULL);
if(status == 0)
printf("%s\n", hsubject);
printf("%s", hsubject);
}
printf ("\n");
break;
}
......