diff options
Diffstat (limited to 'mail/heirloom-mailx/files/patch-aa')
-rw-r--r-- | mail/heirloom-mailx/files/patch-aa | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/heirloom-mailx/files/patch-aa b/mail/heirloom-mailx/files/patch-aa new file mode 100644 index 000000000000..2713ffdd7b2f --- /dev/null +++ b/mail/heirloom-mailx/files/patch-aa @@ -0,0 +1,11 @@ +--- mime.c.orig Fri Dec 29 14:32:43 2000 ++++ mime.c Fri Dec 29 14:32:57 2000 +@@ -150,7 +150,7 @@ + if ((wl = mbstowcs(w, t, LINESIZE)) == -1) + return; + for (p = w, i = 0; *p && i < wl; p++, i++) { +- if (!iswprint(*p) && *p != '\n' && *p != '\r' ++ if (!isprint(*p) && *p != '\n' && *p != '\r' + && *p != '\b' && *p != '\t') + *p = '?'; + } |