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) ...@@ -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
......