diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-02-27 00:30:21 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-02-27 00:30:21 +0000 |
commit | a22ea7b619ea1a23e54780a4936fa0474097ca0a (patch) | |
tree | 427c9b9ec50871367fcfa05b6a9ef5645c678a31 /mail/evolution/files | |
parent | 47695840417950f9e740f87925693b0ee61fd957 (diff) | |
download | ports-a22ea7b619ea1a23e54780a4936fa0474097ca0a.tar.gz ports-a22ea7b619ea1a23e54780a4936fa0474097ca0a.zip |
Notes
Diffstat (limited to 'mail/evolution/files')
-rw-r--r-- | mail/evolution/files/patch-gpg-temp | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/mail/evolution/files/patch-gpg-temp b/mail/evolution/files/patch-gpg-temp new file mode 100644 index 000000000000..93871b48be15 --- /dev/null +++ b/mail/evolution/files/patch-gpg-temp @@ -0,0 +1,84 @@ +diff -u -r1.2.8.1 camel-mime-filter-canon.c +--- camel/camel-mime-filter-canon.c 21 Jan 2003 03:07:05 -0000 1.2.8.1 ++++ camel/camel-mime-filter-canon.c 26 Feb 2003 23:12:09 -0000 +@@ -26,6 +26,7 @@ + #include <config.h> + #endif + ++#include <stdio.h> + #include <string.h> + #include <ctype.h> + +@@ -170,7 +171,7 @@ + if (len) + filter(f, in, len, prespace, out, outlen, outprespace); + +- /* the data didn't contain an eol or was too short for "From ", we only need to check for "From" and add an eol */ ++ /* the data didn't contain an eol or was too short for "From ", we only need to check for "From" */ + if (f->backlen) { + inptr = (unsigned char *)f->backbuf; + inend = (unsigned char *)f->backbuf + f->backlen; +@@ -195,20 +196,7 @@ + while (o>starto && (o[-1] == ' ' || o[-1] == '\t' || o[-1]=='\r')) + o--; + } +- /* check end of line canonicalisation */ +- if (o>starto) { +- if (flags & CAMEL_MIME_FILTER_CANON_CRLF) { +- if (o[-1] != '\r') +- *o++ = '\r'; +- } else { +- if (o[-1] == '\r') +- o--; +- } +- } +- +- /* and always finish with an eol */ +- *o++ = '\n'; +- ++ + *outlen = o - *out; + + f->backlen = 0; +diff -u -r1.24 camel-stream-filter.c +--- camel/camel-stream-filter.c 19 Jul 2002 11:25:02 -0000 1.24 ++++ camel/camel-stream-filter.c 26 Feb 2003 23:12:10 -0000 +@@ -19,11 +19,16 @@ + * Boston, MA 02111-1307, USA. + */ + ++ ++#ifdef HAVE_CONFIG_H ++#include <config.h> ++#endif ++ ++#include <stdio.h> + #include <string.h> + #include "camel-stream-filter.h" + + #define d(x) +-/*#include <stdio.h>*/ + + /* use my malloc debugger? */ + /*extern void g_check(void *mp);*/ +@@ -368,10 +373,18 @@ + { + CamelStreamFilter *filter = (CamelStreamFilter *)stream; + struct _CamelStreamFilterPrivate *p = _PRIVATE(filter); +- ++ struct _filter *f; ++ + if (p->filteredlen > 0) + return FALSE; +- ++ ++ f = p->filters; ++ while (f) { ++ if (f->filter->backlen > 0) ++ return FALSE; ++ f = f->next; ++ } ++ + return camel_stream_eos(filter->source); + } + |