Print newline not depending on the presence of Subject header.
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -180,8 +180,9 @@ action (observer_t o, size_t type) | ... | @@ -180,8 +180,9 @@ action (observer_t o, size_t type) |
180 | int status = header_get_value (hdr, MU_HEADER_SUBJECT, hsubject, | 180 | int status = header_get_value (hdr, MU_HEADER_SUBJECT, hsubject, |
181 | sizeof (hsubject), NULL); | 181 | sizeof (hsubject), NULL); |
182 | if(status == 0) | 182 | if(status == 0) |
183 | printf("%s\n", hsubject); | 183 | printf("%s", hsubject); |
184 | } | 184 | } |
185 | printf ("\n"); | ||
185 | break; | 186 | break; |
186 | } | 187 | } |
187 | 188 | ... | ... |
-
Please register or sign in to post a comment