diff options
| author | Sam Varshavchik | 2018-07-28 20:41:59 -0400 |
|---|---|---|
| committer | Sam Varshavchik | 2018-07-28 20:41:59 -0400 |
| commit | c68cf31de39ad5ff9b2998d1fde60ba0978daf22 (patch) | |
| tree | 7166eac6a74f682148987e6c9d498754429c7af8 | |
| parent | a8d82c4d83467ac95990f229f031606464c5296f (diff) | |
| download | courier-libs-c68cf31de39ad5ff9b2998d1fde60ba0978daf22.tar.bz2 | |
Quote contents of DSN headers.
| -rw-r--r-- | sqwebmail/msg2html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqwebmail/msg2html.c b/sqwebmail/msg2html.c index 137cbae..54097bd 100644 --- a/sqwebmail/msg2html.c +++ b/sqwebmail/msg2html.c @@ -1278,7 +1278,7 @@ off_t dummy; print_header_uc(info, header); printf("<td><span class=\"message-rfc822-header-contents\">"); /* showmsgrfc822_addressheader(value); */ - printf("%s", value); + html_escape(value, strlen(value)); printf("</span></td></tr>\n"); free(header); } |
