summaryrefslogtreecommitdiff
path: root/mail/nail
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2001-01-14 08:02:36 +0000
committerKris Kennaway <kris@FreeBSD.org>2001-01-14 08:02:36 +0000
commit1804397a638c42378571b6fd4d82db6e52f9edd9 (patch)
tree9af65356b1c026773fbf14feb5b0ad79a7647b25 /mail/nail
parentUpdate to nail 9.23 and remove myself from maintainer since I don't (diff)
Add patch
Notes
Notes: svn path=/head/; revision=37178
Diffstat (limited to 'mail/nail')
-rw-r--r--mail/nail/files/patch-aa11
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/nail/files/patch-aa b/mail/nail/files/patch-aa
new file mode 100644
index 000000000000..2713ffdd7b2f
--- /dev/null
+++ b/mail/nail/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 = '?';
+ }