Commit c49a7e4c c49a7e4cf5c2ab354d89d2d785aaa84e1cc4ce48 by Wojciech Polak

(action): Use frm_rfc2047_decode() for the Subject: field too.

1 parent ae7429ac
...@@ -328,6 +328,7 @@ action (observer_t o, size_t type) ...@@ -328,6 +328,7 @@ action (observer_t o, size_t type)
328 int status = header_get_value_unfold (hdr, MU_HEADER_SUBJECT, 328 int status = header_get_value_unfold (hdr, MU_HEADER_SUBJECT,
329 hsubject, 329 hsubject,
330 sizeof (hsubject), NULL); 330 sizeof (hsubject), NULL);
331 frm_rfc2047_decode (hsubject, sizeof (hsubject));
331 if(status == 0) 332 if(status == 0)
332 printf ("%s", hsubject); 333 printf ("%s", hsubject);
333 } 334 }
......