diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-04-18 20:40:20 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-04-18 20:40:20 +0000 |
commit | 6d9bab89320b9cb0dbccabf12c39ee4cef89b0b1 (patch) | |
tree | ecd0ce9c212aaa11decf8fede65cc153ed6afce8 /mail/messagewall/files/patch-applemail | |
parent | Update to 1.0.4. (diff) |
- Add patch obtained from author to work with Apple Mail
- Portlint
PR: ports/65682
Submitted by: Michael Ranner <mranner@inode.at>
Approved by: maintainer
Diffstat (limited to '')
-rw-r--r-- | mail/messagewall/files/patch-applemail | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/messagewall/files/patch-applemail b/mail/messagewall/files/patch-applemail new file mode 100644 index 000000000000..cdc7b211d776 --- /dev/null +++ b/mail/messagewall/files/patch-applemail @@ -0,0 +1,11 @@ +--- rfc822.c.orig Fri Jul 12 19:45:03 2002 ++++ rfc822.c Sat Apr 17 21:05:01 2004 +@@ -156,7 +156,7 @@ + } else { + j = i; + while (j < headervalue->l && +- strchr(RFC822_WHITESPACE,headervalue->s[j]) == NULL) ++ strchr(RFC822_WHITESPACE,headervalue->s[j]) == NULL && headervalue->s[j] != ';') + j++; + } + |